starship/src/main.rs

13 lines
320 B
Rust
Raw Normal View History

2019-04-02 05:23:03 +02:00
#[macro_use]
extern crate clap;
use clap::App;
fn main() {
let matches = App::new("Starship")
.about("The cross-platform prompt for astronauts.")
// pull the version number from Cargo.toml
.version(crate_version!())
.get_matches();
}