diff options
| author | diogo464 <[email protected]> | 2021-07-08 17:11:46 -0400 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2021-07-08 17:11:46 -0400 |
| commit | ed0baec0a3f953c99445f6842dadc5566e89cb75 (patch) | |
| tree | 9f988c41db34907283dd126dc57d29b3d0792bd9 /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.rs | 11 |
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 @@ | |||
| 1 | pub mod init; | ||
| 2 | pub mod install; | ||
| 3 | pub mod link; | ||
| 4 | pub mod uninstall; | ||
| 5 | pub mod unlink; | ||
| 6 | pub mod utils; | ||
| 7 | |||
| 8 | mod prelude { | ||
| 9 | pub use super::utils; | ||
| 10 | pub use crate::prelude::*; | ||
| 11 | } | ||
