summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 8a6cd5fd7c8a8bef8f4780746321acb4984ab6a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#[macro_use]
extern crate clap;
use clap::App;
use std::io;

mod char;

fn main() {
    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!())
        .get_matches();

    prompt::char();
    // let stdout = io::stdout();
    // let mut handle = io::BufWriter::new(stdout);
}