about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-04 20:31:44 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-04 20:32:11 +0100
commitfa41623197514195b695b5ecc05945ec9c4e8a63 (patch)
treea9874de9d5bb760f1e9cca368692503e3f46b94c
parentbuild(cog.toml): Format *before* checking the formatting (diff)
downloadyt-fa41623197514195b695b5ecc05945ec9c4e8a63.tar.gz
yt-fa41623197514195b695b5ecc05945ec9c4e8a63.zip
style(yt/main): Use consistent use qualifications
-rw-r--r--yt/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/src/main.rs b/yt/src/main.rs
index 2049183..3833b79 100644
--- a/yt/src/main.rs
+++ b/yt/src/main.rs
@@ -210,7 +210,7 @@ async fn main() -> Result<()> {
 
         Command::Database { command } => match command {
             CacheCommand::Invalidate { hard } => invalidate(&app, hard).await?,
-            CacheCommand::Maintain { all } => cache::maintain(&app, all).await?,
+            CacheCommand::Maintain { all } => maintain(&app, all).await?,
         },
 
         Command::Check { command } => match command {