package com.ard.zlm;
|
|
import com.ard.common.security.annotation.EnableCustomConfig;
|
import com.ard.common.security.annotation.EnableRyFeignClients;
|
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
/**
|
* zlm模块
|
*
|
* @author fengcheng
|
*/
|
@EnableCustomConfig
|
@EnableRyFeignClients
|
@SpringBootApplication
|
public class ArdZlmApplication
|
{
|
public static void main(String[] args)
|
{
|
SpringApplication.run(ArdZlmApplication.class, args);
|
System.out.println("(♥◠‿◠)ノ゙ ZLM模块启动成功 ლ(´ڡ`ლ)゙ \n" +
|
" ___ ___ \n" +
|
" /\\ \\ /\\ \\ _____ \n" +
|
" /::\\ \\ /::\\ \\ /::\\ \\ \n" +
|
" /:/\\:\\ \\ /:/\\:\\__\\ /:/\\:\\ \\ \n" +
|
" /:/ /::\\ \\ /:/ /:/ / /:/ \\:\\__\\ \n" +
|
" /:/_/:/\\:\\__\\ /:/_/:/__/___ /:/__/ \\:|__| \n" +
|
" \\:\\/:/ \\/__/ \\:\\/:::::/ / \\:\\ \\ /:/ / \n" +
|
" \\::/__/ \\::/~~/~~~~ \\:\\ /:/ / \n" +
|
" \\:\\ \\ \\:\\~~\\ \\:\\/:/ / \n" +
|
" \\:\\__\\ \\:\\__\\ \\::/ / \n" +
|
" \\/__/ \\/__/ \\/__/ \n");
|
}
|
}
|