Remove unused function
We do not offer explicit diary functionality. Either a user creates a diary implicitely by creating a new entry inside of it, or not.
This commit is contained in:
parent
7187ad89b1
commit
b613aba257
1 changed files with 0 additions and 5 deletions
|
@ -57,7 +57,6 @@ fn main() {
|
|||
"delete" => delete(&rt),
|
||||
"edit" => edit(&rt),
|
||||
"list" => list(&rt),
|
||||
"diary" => diary(&rt),
|
||||
"view" => view(&rt),
|
||||
_ => {
|
||||
debug!("Unknown command"); // More error handling
|
||||
|
@ -66,7 +65,3 @@ fn main() {
|
|||
});
|
||||
}
|
||||
|
||||
fn diary(rt: &Runtime) {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue