tentacli 15.2.0

Framework for building extensible network protocol clients via modular plugins.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use tentacli::Client;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let mut args = std::env::args().skip(1);

    if let Some(cmd) = args.next()
        && cmd == "doctor"
    {
        Client::doctor()?;
        return Ok(());
    }

    Client::run(None).await
}