Notes: Add command_links() stub
This commit is contained in:
parent
1a7b31517d
commit
7b14aafa9f
1 changed files with 8 additions and 0 deletions
|
@ -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())
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue