1 2 3 4 5 6 7 8
use std::env; use lakestream::run_cli; fn main() { let args: Vec<String> = env::args().collect(); run_cli(args); }