diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-24 11:28:45 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-24 11:45:28 +0200 |
commit | 55e8da54a85c817bc6f71a9af43a7f6d813a67b3 (patch) | |
tree | 870dea01a562ec3709fd190aa616062705cdb079 /src/main.rs | |
parent | fix(config): Check for wrong keys in the config file (diff) | |
download | yt-55e8da54a85c817bc6f71a9af43a7f6d813a67b3.tar.gz yt-55e8da54a85c817bc6f71a9af43a7f6d813a67b3.zip |
feat(cli/config): Show the currently active configuration
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 57e711d..2bd7571 100644 --- a/src/main.rs +++ b/src/main.rs @@ -174,6 +174,7 @@ async fn main() -> Result<()> { Command::Watch {} => watch::watch(&app).await?, Command::Status {} => status::show(&app).await?, + Command::Config {} => status::config(&app)?, Command::Database { command } => match command { CacheCommand::Invalidate { hard } => cache::invalidate(&app, hard).await?, |