theater-cli 0.2.1

Command-line interface for Theater actor system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod open;

use clap::{Args, Subcommand};

#[derive(Debug, Args)]
pub struct ChannelArgs {
    #[command(subcommand)]
    pub command: ChannelCommands,
}

#[derive(Debug, Subcommand)]
pub enum ChannelCommands {
    /// Open an interactive channel session with an actor
    #[command(name = "open")]
    Open(open::OpenArgs),
}