Files
docki/src/main.rs

15 lines
164 B
Rust

mod app;
#[cfg(test)]
mod test;
use std::env;
use app::App;
fn main() {
let app = App::new();
let args = env::args().collect();
app.start(args);
}