mirror of
https://github.com/starship/starship.git
synced 2026-06-22 02:02:12 +07:00
Initial commit
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
#[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();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user