diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 4239dc1..4979386 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -3,7 +3,7 @@ use modlist::{ | |||
3 | config::Cfg, | 3 | config::Cfg, |
4 | db::{config_get_current_list, lists_get, lists_get_all_ids}, | 4 | db::{config_get_current_list, lists_get, lists_get_all_ids}, |
5 | download, export, get_current_list, import, list_add, list_change, list_remove, list_version, | 5 | download, export, get_current_list, import, list_add, list_change, list_remove, list_version, |
6 | mod_add, mod_remove, update, IDSelector, List, Modloader, VersionLevel, | 6 | mod_add, mod_remove, update, IDSelector, List, Modloader, VersionLevel, list_list, |
7 | }; | 7 | }; |
8 | 8 | ||
9 | #[derive(Parser)] | 9 | #[derive(Parser)] |
@@ -222,7 +222,7 @@ async fn main() { | |||
222 | } | 222 | } |
223 | ListCommands::Remove { id } => list_remove(config, id), | 223 | ListCommands::Remove { id } => list_remove(config, id), |
224 | ListCommands::List => { | 224 | ListCommands::List => { |
225 | todo!() | 225 | list_list(config) |
226 | } | 226 | } |
227 | ListCommands::Change { id } => list_change(config, id), | 227 | ListCommands::Change { id } => list_change(config, id), |
228 | ListCommands::Version { | 228 | ListCommands::Version { |