starship/src/main.rs

13 lines
320 B
Rust

#[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();
}