tcup 0.1.2

The one and only teacup client!
Documentation
1
2
3
4
5
6
7
8
9
#[tokio::main]
async fn main() {
    match tcup::run_cli().await {
        Ok(_) => {}
        Err(error) => {
            eprintln!("Error: {:?}", error);
        }
    };
}