summaryrefslogtreecommitdiffstats
path: root/src/paths.rs
diff options
context:
space:
mode:
authorrabite <rabite@posteo.de>2019-05-28 00:50:15 +0200
committerrabite <rabite@posteo.de>2019-05-28 00:51:47 +0200
commitad4e3d573fffe2412c7840319c39ca4a64c02b56 (patch)
tree06a8e64a71859fbb448cc37e523b8bcc8ab606d2 /src/paths.rs
parentfdc4eb52d0403e041fe77f403b0dbc5686789087 (diff)
add quick actions
Diffstat (limited to 'src/paths.rs')
-rw-r--r--src/paths.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/paths.rs b/src/paths.rs
index 68c6376..bfc7b53 100644
--- a/src/paths.rs
+++ b/src/paths.rs
@@ -55,3 +55,9 @@ pub fn history_path() -> HResult<PathBuf> {
history_path.push("history");
Ok(history_path)
}
+
+pub fn actions_path() -> HResult<PathBuf> {
+ let mut actions_path = hunter_path()?;
+ actions_path.push("actions");
+ Ok(actions_path)
+}