summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-04-02 00:45:49 -0400
committerMatan Kushner <hello@matchai.me>2019-04-02 00:45:49 -0400
commit41ee54933bd2820b1ba97726514f785f1ac73824 (patch)
tree1d7fea41b4ffc43bbcf000bdcfeaa86c0071e5e9 /src/main.rs
parent4e1ae0662234bca85837fe136d0ab997b917c835 (diff)
Start working on char color for status
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 17c57862d..8a6cd5fd7 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,13 +1,20 @@
#[macro_use]
extern crate clap;
use clap::App;
+use std::io;
+
+mod char;
fn main() {
- let matches = App::new("Starship")
+ 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);
}