aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-16 16:24:17 +0000
committerFuwn <[email protected]>2021-05-16 16:24:17 +0000
commitaa5c97d75077a79d6f9f0e46c84697e754e7b9b7 (patch)
tree1b2131eb45cfa54f7dec79c23c1fbd7a5a8b098b /src/lib.rs
parentrefactor(subs): remove two second delay before prompt initiailization (diff)
downloadwhirl-aa5c97d75077a79d6f9f0e46c84697e754e7b9b7.tar.xz
whirl-aa5c97d75077a79d6f9f0e46c84697e754e7b9b7.zip
feat(cli): `clean` subcommand
The `clean` subcommand deletes files and directories which are not necessary for Whirl to function.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 8c6c768..1c60e70 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -19,6 +19,8 @@ extern crate diesel;
extern crate serde_derive;
#[macro_use]
extern crate async_trait;
+#[macro_use]
+extern crate simple_error;
pub mod cli;
pub mod config;