ftn 0.1.0

FTNet: FifthTry Network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(clap::Parser, Debug)]
#[command(version, about, long_about = None)]
pub struct Cli {
    #[command(subcommand)]
    command: Command,
}

#[derive(clap::Subcommand, Debug)]
pub enum Command {
    #[clap(about = "Start the ftnet service.")]
    Start,
    #[clap(about = "Connect to a remote ftnet service.")]
    Proxy { id: String },
}