1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-18 16:22:19 +00:00
starship/src/main.rs
2019-04-13 00:34:56 -04:00

31 lines
715 B
Rust

#[macro_use]
extern crate clap;
extern crate ansi_term;
extern crate dirs;
extern crate git2;
mod modules;
mod print;
mod segment;
use clap::{App, Arg};
fn main() {
let args = App::new("Starship")
.about("The cross-shell prompt for astronauts. ✨🚀")
// pull the version number from Cargo.toml
.version(crate_version!())
// pull the authors from Cargo.toml
.author(crate_authors!())
.after_help("https://github.com/matchai/starship")
.arg(
Arg::with_name("status_code")
.help("The status code of the previously run command")
.required(true),
)
.get_matches();
print::prompt(args);
}