uqa-cli 0.1.11

usql: interactive REPL for UQA
1
2
3
4
5
6
7
8
9
10
11
12
13
//
// Unified Query Algebra
//
// Copyright (c) 2023-2026 Cognica, Inc.
//

//! `usql` binary entry point.

use std::process::ExitCode;

fn main() -> ExitCode {
    uqa_cli::run_from_env()
}