1use clap::Parser; 2 3#[derive(Parser, Debug)] 4pub struct UninstallPluginArgs { 5 /// The name of the plugin. 6 pub plugin_name: String, 7}