beamcli 0.5.0

An Interface on top of the Teleport CLI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::Result;
use beamcli::cli::Beam;
use clap::Parser;

#[tokio::main]
async fn main() -> Result<()> {
    match Beam::from_args().run().await {
        Ok(_) => Ok(()),
        Err(e) => {
            eprintln!("{}", e);
            std::process::exit(1);
        }
    }
}