package com.ard.modules.monitor;
|
|
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import de.codecentric.boot.admin.server.config.EnableAdminServer;
|
|
/**
|
* 监控中心
|
*
|
* @author ard
|
*/
|
@EnableAdminServer
|
@SpringBootApplication
|
public class ArdMonitorApplication
|
{
|
public static void main(String[] args)
|
{
|
SpringApplication.run(ArdMonitorApplication.class, args);
|
System.out.println("(♥◠‿◠)ノ゙ 监控中心启动成功 ლ(´ڡ`ლ)゙ \n" +
|
" ___ ___ \n" +
|
" /\\ \\ /\\ \\ _____ \n" +
|
" /::\\ \\ /::\\ \\ /::\\ \\ \n" +
|
" /:/\\:\\ \\ /:/\\:\\__\\ /:/\\:\\ \\ \n" +
|
" /:/ /::\\ \\ /:/ /:/ / /:/ \\:\\__\\ \n" +
|
" /:/_/:/\\:\\__\\ /:/_/:/__/___ /:/__/ \\:|__| \n" +
|
" \\:\\/:/ \\/__/ \\:\\/:::::/ / \\:\\ \\ /:/ / \n" +
|
" \\::/__/ \\::/~~/~~~~ \\:\\ /:/ / \n" +
|
" \\:\\ \\ \\:\\~~\\ \\:\\/:/ / \n" +
|
" \\:\\__\\ \\:\\__\\ \\::/ / \n" +
|
" \\/__/ \\/__/ \\/__/ \n");
|
}
|
}
|