1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-05-31 15:40:51 +00:00
starship/src/main.rs
2019-04-02 00:45:49 -04:00

21 lines
474 B
Rust

#[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);
}