Clean up lib

This commit is contained in:
Thom Dickson 2021-12-16 21:16:02 -05:00
parent a2f86770d1
commit a3c4a5f2dd
Signed by: boots
GPG Key ID: 40BE2AF8EBF8D2BB
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
pub mod config; pub mod config;
use config::{Config, Repository}; use config::{Config, Repository};
use std::error::Error;
use std::env; use std::env;
use std::error::Error;
#[derive(Debug)] #[derive(Debug)]
/// Holds the current state of the application. /// Holds the current state of the application.
@ -81,7 +81,7 @@ impl State {
_ => {} _ => {}
}, },
None => { None => {
eprintln!("No URL provided for \'number\' command\n"); eprintln!("No URL provided for command\n");
} }
} }
} }