Added logo
This commit is contained in:
parent
fb63163cbc
commit
0b1a008526
@ -6,12 +6,10 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
@SpringBootApplication
|
||||
public class App {
|
||||
|
||||
public static final String ANSI_RESET = "\u001B[0m";
|
||||
public static final String ANSI_YELLOW = "\u001B[33m";
|
||||
public static final String ANSI_BLUE = "\u001B[34m";
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println(ANSI_YELLOW + "🎓" + ANSI_BLUE + "PlanNaPlan" + ANSI_RESET);
|
||||
Logo logo = new Logo("beta");
|
||||
System.out.println(logo.getLogo());
|
||||
System.out.println("|=============================================================================================|");
|
||||
SpringApplication.run(App.class, args);
|
||||
}
|
||||
}
|
||||
|
33
restservice/src/main/java/com/plannaplan/Logo.java
Normal file
33
restservice/src/main/java/com/plannaplan/Logo.java
Normal file
@ -0,0 +1,33 @@
|
||||
package com.plannaplan;
|
||||
|
||||
public class Logo {
|
||||
|
||||
public static final String ANSI_RESET = "\u001B[0m";
|
||||
public static final String ANSI_YELLOW = "\u001B[33m";
|
||||
public static final String ANSI_BLUE = "\u001B[34m";
|
||||
public static final String ANSI_BLACK = "\u001B[30m";
|
||||
private String version;
|
||||
|
||||
public Logo(String version){
|
||||
this.version = version;
|
||||
}
|
||||
|
||||
public String getLogo(){
|
||||
String result = ANSI_YELLOW +
|
||||
" .,,,,, \n"+
|
||||
" .,,,,,,,,,,,,, \n" +
|
||||
" .,,,,,,,,,,,,,,,,,,,,, \n" +
|
||||
" .,,,,,,,(,,,,,,,,,,,,,,,,,,,,, \n" +
|
||||
" ,,,,,,,(,,,,,,,,,,,,,,,,,,,,,,,,,,,,. \n" +
|
||||
" ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,. " + ANSI_RESET + " _ _ \n"+
|
||||
" * " + ANSI_YELLOW +",,,,,,,,,,,,,,,,,,,,. " + ANSI_RESET + " | | | | \n" +
|
||||
" * " + ANSI_BLUE + "%%%. " + ANSI_YELLOW +",,,,,,,,,,,,. "+ ANSI_BLUE+"(%%# " + ANSI_RESET + " _ __ | | __ _ _ __ _ __ __ _ _ __ | | __ _ _ __ \n" +
|
||||
" * " + ANSI_BLUE + "%%%%%%%. " + ANSI_YELLOW + ",,,,. "+ ANSI_BLUE +"#%%%%%%# " + ANSI_RESET + "| '_ \\| |/ _` | '_ \\| '_ \\ / _` | '_ \\| |/ _` | '_ \\ \n" +
|
||||
" * " + ANSI_BLUE +"%%%%%%%%%%%#%%%%%%%%%%# " + ANSI_RESET + "| |_) | | (_| | | | | | | | (_| | |_) | | (_| | | | |\n" +
|
||||
" * " + ANSI_BLUE +"/%%%%%%%%%%%%%%%%%%% " + ANSI_RESET + "| .__/|_|\\__,_|_| |_|_| |_|\\__,_| .__/|_|\\__,_|_| |_|\n" +
|
||||
" ( / " + ANSI_BLUE +"#%%%%%%%%%%%. " + ANSI_RESET + "| | | | "+ ANSI_BLUE +"(" +this.version + ")" +"\n" + ANSI_BLUE +
|
||||
" %%%%/ " + ANSI_RESET + "|_| |_| \n" +
|
||||
ANSI_RESET;
|
||||
return result;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user