From 55e8da54a85c817bc6f71a9af43a7f6d813a67b3 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 24 Aug 2024 11:28:45 +0200 Subject: feat(cli/config): Show the currently active configuration --- src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main.rs') 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?, -- cgit 1.4.1