diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-04 20:31:44 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-04 20:32:11 +0100 |
commit | fa41623197514195b695b5ecc05945ec9c4e8a63 (patch) | |
tree | a9874de9d5bb760f1e9cca368692503e3f46b94c | |
parent | build(cog.toml): Format *before* checking the formatting (diff) | |
download | yt-fa41623197514195b695b5ecc05945ec9c4e8a63.tar.gz yt-fa41623197514195b695b5ecc05945ec9c4e8a63.zip |
style(yt/main): Use consistent use qualifications
-rw-r--r-- | yt/src/main.rs | 2 |
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 { |