about summary refs log tree commit diff stats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
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?,