diff options
author | Julian T. <julian@jtle.dk> | 2024-04-28 00:05:33 +0200 |
---|---|---|
committer | Julian T. <julian@jtle.dk> | 2024-04-28 00:05:33 +0200 |
commit | 0b29e9b14607f3226c46f75a20f11abd49c8f4a6 (patch) | |
tree | f35d4d8021fc018e7e04c4268b543b1971a9af66 /src/commands/start.rs | |
parent | b27e72f5ac588506941b74c1f421235eb59e69d5 (diff) |
Start with tui instead
Diffstat (limited to 'src/commands/start.rs')
-rw-r--r-- | src/commands/start.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/commands/start.rs b/src/commands/start.rs deleted file mode 100644 index a122d5c..0000000 --- a/src/commands/start.rs +++ /dev/null @@ -1,12 +0,0 @@ -use crate::commands::parser::{Text, Parse}; - -pub enum Commands { - Start(Text), -} - -impl<'a> Parse<'a> for Commands { - type Res = Commands; - - fn parse(self -} - |