starship/src/main.rs

15 lines
430 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")
2019-04-02 05:28:29 +02:00
.about("The cross-platform prompt for astronauts. ✨🚀")
2019-04-02 05:23:03 +02:00
// pull the version number from Cargo.toml
.version(crate_version!())
2019-04-02 05:28:29 +02:00
// pull the authors from Cargo.toml
.author(crate_authors!())
2019-04-02 05:23:03 +02:00
.get_matches();
}