aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/commands/clear_cache.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/clear_cache.rs')
-rw-r--r--src/commands/clear_cache.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/commands/clear_cache.rs b/src/commands/clear_cache.rs
deleted file mode 100644
index 051ff4c..0000000
--- a/src/commands/clear_cache.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-use clap::Args;
-
-#[derive(Args)]
-pub struct ClearCacheArgs {
- /// Only run garbage collection, not a full cache clear
- #[arg(long)]
- pub gc: bool,
-}
-
-pub fn execute(_args: &ClearCacheArgs) {
- todo!()
-}