rustycli 0.1.1

🦊 Access the rust playground right in terminal.
1
2
3
4
5
6
7
8
9
pub mod interface;

#[tokio::main]
async fn main() {
    if let Err(err) = interface::run::run_rustycli().await {
        eprintln!("Error: {}", err);
        std::process::exit(1);
    }
}