theater_cli/commands/channel/
mod.rs

1pub mod open;
2
3use clap::{Args, Subcommand};
4
5#[derive(Debug, Args)]
6pub struct ChannelArgs {
7    #[command(subcommand)]
8    pub command: ChannelCommands,
9}
10
11#[derive(Debug, Subcommand)]
12pub enum ChannelCommands {
13    /// Open an interactive channel session with an actor
14    #[command(name = "open")]
15    Open(open::OpenArgs),
16}