1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-05-31 23:50:52 +00:00
starship/src/main.rs

14 lines
357 B
Rust
Raw Normal View History

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