summaryrefslogtreecommitdiffstats
path: root/src/actions/mod.rs
diff options
context:
space:
mode:
authorVincent Breitmoser <look@my.amazin.horse>2019-01-12 13:26:10 +0100
committerVincent Breitmoser <look@my.amazin.horse>2019-01-12 13:36:07 +0100
commitcbcf36f8c413b2ef7d15e94730efb7026be0390d (patch)
treea310fc50c0a6b07990004f072cc05f738be8e49d /src/actions/mod.rs
parentebc52dca11c27c3b2013eb7a539e1966b7fdb41b (diff)
move actions into actions module
Diffstat (limited to 'src/actions/mod.rs')
-rw-r--r--src/actions/mod.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/actions/mod.rs b/src/actions/mod.rs
new file mode 100644
index 0000000..20d8149
--- /dev/null
+++ b/src/actions/mod.rs
@@ -0,0 +1,13 @@
+pub mod agenda;
+pub mod cal;
+pub mod copy;
+pub mod edit;
+pub mod index;
+pub mod list;
+pub mod modify;
+pub mod new;
+pub mod prettyprint;
+pub mod select;
+pub mod seq;
+pub mod show;
+pub mod unroll;