Added command line to find config

This commit is contained in:
int 80h
2020-04-28 17:54:50 -04:00
parent 596783d613
commit 6a118ad66a
3 changed files with 17 additions and 18 deletions

View File

@@ -29,16 +29,6 @@ pub enum Status {
impl fmt::Display for Status {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{:?}", self)
// or, alternatively:
// fmt::Debug::fmt(self, f)
}
}
impl Status {
pub fn as_str(&self) -> &'static str {
match *self {
Status::Success => "20\t",
_ => "",
}
}
}