diff options
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 2ae609a..dd532a4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,6 @@ use clap; use log::info; use std::io; -use std::process; use std::time; use users; @@ -40,8 +39,6 @@ fn main() { if arg_matches.subcommand_matches("post").is_some() { info!("New post..."); post(&db); - list_matches(&db); - process::exit(0); } list_matches(&db); |