Notes: Add command_links() stub

This commit is contained in:
Matthias Beyer 2016-01-03 14:50:15 +01:00
parent 1a7b31517d
commit 7b14aafa9f

View file

@ -161,6 +161,10 @@ impl<'a> Notes<'a> {
true
}
fn command_links(&self, matches: &ArgMatches) -> bool {
unimplemented!()
}
fn command_remove(&self, matches: &ArgMatches) -> bool {
let parser = Parser::new(JsonHeaderParser::new(None));
@ -251,6 +255,10 @@ impl<'a> Module<'a> for Notes<'a> {
self.command_list(matches.subcommand_matches("list").unwrap())
},
Some("links") => {
self.command_links(matches.subcommand_matches("links").unwrap())
},
Some("remove") => {
self.command_remove(matches.subcommand_matches("remove").unwrap())
},