athenacli 0.1.0

CLI tool for running queries against AWS Athena
Documentation
1
2
3
4
5
6
7
8
9
10
#[tokio::main]
async fn main() {
    match athenacli::run().await {
        Ok(_) => {},
        Err(error) => {
            eprintln!("FATAL ERROR: {}", error);
            std::process::exit(1);
        }
    };
}