bird 0.2.0

X API CLI with entity caching, search, threads, and watchlists
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Minimal smoke test for the binary entrypoint.
//!
//! Calls `bird::cli::run_argv()` — the same function `src/main.rs` calls.
//! Demonstrates that the library can drive the full CLI from a host process
//! without re-implementing argv resolution. Exits with the same code the
//! `bird` binary would.
//!
//! Run with: `cargo run --example library_smoke -- --version`
//!
//! The library surface is internal test infrastructure; downstream consumers
//! should shell out to the `bird` binary in production. See `src/lib.rs`.

use std::process::ExitCode;

fn main() -> ExitCode {
    bird::cli::run_argv()
}