Remove tagging functionality from imag-notes
This commit is contained in:
parent
b787ef1696
commit
26115bf7f8
3 changed files with 0 additions and 6 deletions
|
@ -23,5 +23,4 @@ libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" }
|
|||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
libimagnotes = { version = "0.4.0", path = "../../../lib/domain/libimagnotes" }
|
||||
libimagentryedit = { version = "0.4.0", path = "../../../lib/entry/libimagentryedit" }
|
||||
libimagentrytag = { version = "0.4.0", path = "../../../lib/entry/libimagentrytag" }
|
||||
libimagutil = { version = "0.4.0", path = "../../../lib/etc/libimagutil" }
|
||||
|
|
|
@ -25,7 +25,6 @@ extern crate itertools;
|
|||
extern crate libimagnotes;
|
||||
extern crate libimagrt;
|
||||
extern crate libimagentryedit;
|
||||
extern crate libimagentrytag;
|
||||
extern crate libimagerror;
|
||||
extern crate libimagutil;
|
||||
|
||||
|
|
|
@ -19,8 +19,6 @@
|
|||
|
||||
use clap::{Arg, App, SubCommand};
|
||||
|
||||
use libimagentrytag::ui::tag_argument;
|
||||
|
||||
pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
||||
app
|
||||
.subcommand(SubCommand::with_name("create")
|
||||
|
@ -62,8 +60,6 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
|||
.required(true)
|
||||
.help("Edit Note with this name")
|
||||
.value_name("NAME"))
|
||||
|
||||
.arg(tag_argument())
|
||||
)
|
||||
|
||||
.subcommand(SubCommand::with_name("list")
|
||||
|
|
Loading…
Reference in a new issue