mirror of
https://github.com/starship/starship.git
synced 2024-12-05 23:01:21 +01:00
13 lines
320 B
Rust
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();
|
||
|
|
||
|
}
|