@@ -5,7 +5,6 @@ use regex::Regex;
55
66pub mod assign;
77pub mod close;
8- pub mod glacier;
98pub mod nominate;
109pub mod note;
1110pub mod ping;
@@ -23,7 +22,6 @@ pub enum Command<'a> {
2322 Nominate ( Result < nominate:: NominateCommand , Error < ' a > > ) ,
2423 Prioritize ( Result < prioritize:: PrioritizeCommand , Error < ' a > > ) ,
2524 Second ( Result < second:: SecondCommand , Error < ' a > > ) ,
26- Glacier ( Result < glacier:: GlacierCommand , Error < ' a > > ) ,
2725 Shortcut ( Result < shortcut:: ShortcutCommand , Error < ' a > > ) ,
2826 Close ( Result < close:: CloseCommand , Error < ' a > > ) ,
2927 Note ( Result < note:: NoteCommand , Error < ' a > > ) ,
@@ -119,11 +117,6 @@ impl<'a> Input<'a> {
119117 Command :: Second ,
120118 & original_tokenizer,
121119 ) ) ;
122- success. extend ( parse_single_command (
123- glacier:: GlacierCommand :: parse,
124- Command :: Glacier ,
125- & original_tokenizer,
126- ) ) ;
127120 success. extend ( parse_single_command (
128121 shortcut:: ShortcutCommand :: parse,
129122 Command :: Shortcut ,
@@ -210,7 +203,6 @@ impl<'a> Command<'a> {
210203 Command :: Nominate ( r) => r. is_ok ( ) ,
211204 Command :: Prioritize ( r) => r. is_ok ( ) ,
212205 Command :: Second ( r) => r. is_ok ( ) ,
213- Command :: Glacier ( r) => r. is_ok ( ) ,
214206 Command :: Shortcut ( r) => r. is_ok ( ) ,
215207 Command :: Close ( r) => r. is_ok ( ) ,
216208 Command :: Note ( r) => r. is_ok ( ) ,
0 commit comments