reactive_graph/tooling/instances/plugins/install/commands.rs
1use crate::tooling::releases::args::ReleaseInfoArgs;
2use crate::tooling::releases::args::ReleaseListArgs;
3use clap::Subcommand;
4
5#[derive(Subcommand, Debug)]
6pub enum InstallPluginsFromRepositoryCommands {
7 /// Shows information about the selected release.
8 Info(ReleaseInfoArgs),
9 /// Lists the releases.
10 List(ReleaseListArgs),
11}