reactive_graph_client/client/system/instance/
commands.rs

1use clap::Subcommand;
2
3#[derive(Subcommand, Debug, Clone)]
4pub(crate) enum InstanceInfoCommands {
5    /// Get instance information.
6    #[non_exhaustive]
7    Get,
8}