diff options
Diffstat (limited to 'src/commands/start.rs')
-rw-r--r-- | src/commands/start.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/commands/start.rs b/src/commands/start.rs new file mode 100644 index 0000000..a122d5c --- /dev/null +++ b/src/commands/start.rs @@ -0,0 +1,12 @@ +use crate::commands::parser::{Text, Parse}; + +pub enum Commands { + Start(Text), +} + +impl<'a> Parse<'a> for Commands { + type Res = Commands; + + fn parse(self +} + |