aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/clear_cache.rs
blob: 051ff4c2c1532499535d01caa6e69abfb5f151c1 (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) {
    todo!()
}