aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli/src/commands/mod.rs
blob: f3726620a8c0acb03d399af47364165aabfd82bd (plain)
1
2
3
4
5
6
7
8
9
10
11
pub mod init;
pub mod install;
pub mod link;
pub mod uninstall;
pub mod unlink;
pub mod utils;

mod prelude {
    pub use super::utils;
    pub use crate::prelude::*;
}