From 233ce27a533b1c5a976d4e586981f049d997e1b6 Mon Sep 17 00:00:00 2001 From: Shaishav Gandhi Date: Sun, 29 Mar 2020 13:07:10 -0700 Subject: [PATCH] Add ASCII Art for welcome screen (#40) --- src/auth.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/auth.rs b/src/auth.rs index e18f348..6e3552e 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -11,8 +11,14 @@ pub fn init() -> Result { match existing_config { Ok(config) => Result::Ok(config), Err(_) => { - println!("Welcome to Fab! Let's get you started"); - + println!(" _ _ _ _ ______ _ +| | | | | | | | | ___| | | +| | | | ___| | ___ ___ _ __ ___ ___ | |_ ___ | |_ __ _| |__ +| |/\\| |/ _ \\ |/ __/ _ \\| '_ ` _ \\ / _ \\ | __/ _ \\ | _/ _` | '_ \\ +\\ /\\ / __/ | (_| (_) | | | | | | __/ | || (_) | | || (_| | |_) | + \\/ \\/ \\___|_|\\___\\___/|_| |_| |_|\\___| \\__\\___/ \\_| \\__,_|_.__/"); + + println!("Let's get you started!"); println!("Enter the URL where your Phabricator instance is hosted. Example: https://phab.mycompany.com/"); let hosted_instance = prompt_hosted_instance();