querypie-cli 0.1.1

Query QueryPie databases from the terminal with webview authentication.
1
2
3
4
5
6
7
8
9
fn main() {
    std::process::exit(match querypie_cli::cli::run() {
        Ok(()) => 0,
        Err(err) => {
            querypie_cli::cli::render_error(&err);
            1
        }
    });
}