summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 9eb0139355bfb6b6daae092d781dc16692c3761a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#[macro_use]
extern crate clap;
extern crate ansi_term;
extern crate dirs;
extern crate git2;

mod modules;
mod print;

use clap::{App, Arg};

fn main() {
    let args = App::new("Starship")
        .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!())
        .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);
}