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:
Matthias Beyer 2016-07-31 11:11:06 +02:00
parent 7187ad89b1
commit b613aba257

View file

@ -57,7 +57,6 @@ fn main() {
"delete" => delete(&rt), "delete" => delete(&rt),
"edit" => edit(&rt), "edit" => edit(&rt),
"list" => list(&rt), "list" => list(&rt),
"diary" => diary(&rt),
"view" => view(&rt), "view" => view(&rt),
_ => { _ => {
debug!("Unknown command"); // More error handling debug!("Unknown command"); // More error handling
@ -66,7 +65,3 @@ fn main() {
}); });
} }
fn diary(rt: &Runtime) {
unimplemented!()
}