diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-01-14 15:52:49 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-01-14 15:52:49 +0100 |
| commit | a6678f3c195b3eae1e1c977f2b4c418e48c404c5 (patch) | |
| tree | 3e4e2eedf35713be39ce912d89b1efc5057bc37f /crates/cli/src/main.rs | |
| parent | ebe882a4997f74a741f4e1b730a4dc942cad36ea (diff) | |
| download | mihi-a6678f3c195b3eae1e1c977f2b4c418e48c404c5.tar.gz mihi-a6678f3c195b3eae1e1c977f2b4c418e48c404c5.zip | |
Implement the 'ls' command for exercises
It was the only part missing for exercises, which was even listed in
-h/--help.
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'crates/cli/src/main.rs')
| -rw-r--r-- | crates/cli/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/cli/src/main.rs b/crates/cli/src/main.rs index 62ffd45..871490a 100644 --- a/crates/cli/src/main.rs +++ b/crates/cli/src/main.rs @@ -18,6 +18,7 @@ fn help() { println!(" -v, --version\tPrint the version of this program.\n"); println!("Commands:"); + println!(" exercises\t\tManage the exercises for this application."); println!(" init\t\t\tInitialize the configuration for this application."); println!(" nuke\t\t\tRemove all files from this application and its database."); println!(" practice\t\tPractice vocabulary/exercises. Default command if none was given."); |
