2020-06-09 18:14:49 +02:00
|
|
|
package com.plannaplan;
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
|
|
|
@SpringBootApplication
|
|
|
|
public class App {
|
2020-06-10 10:53:22 +02:00
|
|
|
|
2020-08-19 17:20:28 +02:00
|
|
|
public static final String ANSI_RESET = "\u001B[0m";
|
|
|
|
public static final String ANSI_YELLOW = "\u001B[33m";
|
|
|
|
public static final String ANSI_BLUE = "\u001B[34m";
|
|
|
|
|
2020-06-09 18:14:49 +02:00
|
|
|
public static void main(String[] args) {
|
2020-08-19 17:20:28 +02:00
|
|
|
System.out.println(ANSI_YELLOW + "🎓" + ANSI_BLUE + "PlanNaPlan" + ANSI_RESET);
|
2020-06-09 18:14:49 +02:00
|
|
|
SpringApplication.run(App.class, args);
|
|
|
|
}
|
|
|
|
}
|