blob: 638de06a256934ffc5af813c92638d58f418fa9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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, _cli: &super::Cli) -> anyhow::Result<()> {
todo!()
}
|