aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli/src/commands/mod.rs
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2021-07-08 17:11:46 -0400
committerdiogo464 <[email protected]>2021-07-08 17:11:46 -0400
commited0baec0a3f953c99445f6842dadc5566e89cb75 (patch)
tree9f988c41db34907283dd126dc57d29b3d0792bd9 /dotup_cli/src/commands/mod.rs
Initial commit
Diffstat (limited to 'dotup_cli/src/commands/mod.rs')
-rw-r--r--dotup_cli/src/commands/mod.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/dotup_cli/src/commands/mod.rs b/dotup_cli/src/commands/mod.rs
new file mode 100644
index 0000000..f372662
--- /dev/null
+++ b/dotup_cli/src/commands/mod.rs
@@ -0,0 +1,11 @@
1pub mod init;
2pub mod install;
3pub mod link;
4pub mod uninstall;
5pub mod unlink;
6pub mod utils;
7
8mod prelude {
9 pub use super::utils;
10 pub use crate::prelude::*;
11}