reactive_graph_tooling/tooling/update/
commands.rs

1use crate::tooling::update::args::UpdateInfoArgs;
2use crate::tooling::update::args::UpdateListArgs;
3use clap::Subcommand;
4
5#[derive(Subcommand, Debug)]
6pub enum UpdateCommands {
7    /// Shows information about the selected release.
8    Info(UpdateInfoArgs),
9    /// Lists the releases.
10    List(UpdateListArgs),
11}