Skip to content

Commit

Permalink
Add ASCII Art for welcome screen (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaishavGandhi committed Mar 29, 2020
1 parent 7cd5940 commit 233ce27
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,14 @@ pub fn init() -> Result<FabConfig, String> {
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();
Expand Down

0 comments on commit 233ce27

Please sign in to comment.