//! Action type definitions for CLI commands.
//!//! Defines the action enums used by various commands.
useclap::Subcommand;/// Server management actions.
#[derive(Subcommand, Debug)]pubenumServerAction{/// List all configured servers
List,/// Show detailed information about a server
Info {/// Server name
server:String,},/// Validate a server command
Validate {/// Server command to validate
command:String,},}