diff options
Diffstat (limited to 'dotup_cli/src/main.rs')
| -rw-r--r-- | dotup_cli/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dotup_cli/src/main.rs b/dotup_cli/src/main.rs index 0b4bff1..b4339c9 100644 --- a/dotup_cli/src/main.rs +++ b/dotup_cli/src/main.rs | |||
| @@ -2,17 +2,17 @@ | |||
| 2 | 2 | ||
| 3 | pub mod commands; | 3 | pub mod commands; |
| 4 | pub mod config; | 4 | pub mod config; |
| 5 | pub mod utils; | ||
| 5 | 6 | ||
| 6 | pub use config::Config; | 7 | pub use config::Config; |
| 7 | 8 | ||
| 8 | pub mod prelude { | 9 | pub mod prelude { |
| 9 | pub use super::Config; | 10 | pub use super::{utils, Config}; |
| 10 | pub use clap::{AppSettings, Clap}; | 11 | pub use clap::{AppSettings, Clap}; |
| 11 | pub use dotup::{Archive, Depot, DepotConfig, Link, LinkCreateParams, LinkID}; | 12 | pub use dotup::{Archive, Depot, DepotConfig, Link, LinkCreateParams, LinkID}; |
| 12 | } | 13 | } |
| 13 | 14 | ||
| 14 | use clap::{AppSettings, Clap}; | 15 | use clap::{AppSettings, Clap}; |
| 15 | use commands::utils; | ||
| 16 | use flexi_logger::Logger; | 16 | use flexi_logger::Logger; |
| 17 | use std::{ | 17 | use std::{ |
| 18 | collections::HashMap, | 18 | collections::HashMap, |
