You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
963 B
Java
30 lines
963 B
Java
package com.op.device;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import com.op.common.security.annotation.EnableCustomConfig;
|
|
import com.op.common.security.annotation.EnableRyFeignClients;
|
|
import com.op.common.swagger.annotation.EnableCustomSwagger2;
|
|
|
|
/**
|
|
* 系统模块
|
|
*
|
|
* @author OP
|
|
*/
|
|
@EnableCustomConfig
|
|
@EnableCustomSwagger2
|
|
@EnableRyFeignClients
|
|
@SpringBootApplication
|
|
public class DeviceApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(DeviceApplication.class, args);
|
|
System.err.println("设备服务启动成功\n"
|
|
+ "________ .__ \n" +
|
|
"\\______ \\ _______ _|__| ____ ____ \n" +
|
|
" | | \\_/ __ \\ \\/ / |/ ___\\/ __ \\ \n" +
|
|
" | ` \\ ___/\\ /| \\ \\__\\ ___/ \n" +
|
|
"/_______ /\\___ >\\_/ |__|\\___ >___ >\n" +
|
|
" \\/ \\/ \\/ \\/");
|
|
}
|
|
}
|