25 lines
1.2 KiB
Java
25 lines
1.2 KiB
Java
package com.agileboot;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* @Author cuiJiaWang
|
|
* @Create 2025-08-12 18:07
|
|
*/
|
|
@SpringBootApplication(scanBasePackages = "com.agileboot.*")
|
|
public class AgilebootBootApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(AgilebootBootApplication.class, args);
|
|
String successMsg = " ____ _ _ __ _ _ \n"
|
|
+ " / ___| | |_ __ _ _ __ | |_ _ _ _ __ ___ _ _ ___ ___ ___ ___ ___ / _| _ _ | || |\n"
|
|
+ " \\___ \\ | __|/ _` || '__|| __| | | | || '_ \\ / __|| | | | / __|/ __|/ _ \\/ __|/ __|| |_ | | | || || |\n"
|
|
+ " ___) || |_| (_| || | | |_ | |_| || |_) | \\__ \\| |_| || (__| (__| __/\\__ \\\\__ \\| _|| |_| || ||_|\n"
|
|
+ " |____/ \\__|\\__,_||_| \\__| \\__,_|| .__/ |___/ \\__,_| \\___|\\___|\\___||___/|___/|_| \\__,_||_|(_)\n"
|
|
+ " |_| ";
|
|
|
|
System.out.println(successMsg);
|
|
}
|
|
}
|