free-rusty-maker/src/app/editor/main.rs

12 lines
202 B
Rust

use clap::{App, crate_version};
use rusty::app::editor::Editor;
fn main() {
let _ = App::new("Rusty Editor")
.version(crate_version!())
.get_matches();
Editor::new().run();
}