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