ono 0.0.0

Beautiful terminal UI components — copy-paste, framework-agnostic. Placeholder; the real CLI ships in v0.1.0.
1
2
3
4
5
6
7
8
9
10
11
12
const PITCH: &str = "Beautiful terminal UI components. Copy-paste, framework-agnostic, code you own.";
const REPO: &str = "https://github.com/nullorder/ono";

fn main() {
    println!();
    println!("  ono v{}", env!("CARGO_PKG_VERSION"));
    println!("  {}", PITCH);
    println!();
    println!("  Status: placeholder. The real CLI ships in v0.1.0.");
    println!("  Follow along: {}", REPO);
    println!();
}