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
937 B
Java
30 lines
937 B
Java
2 years ago
|
package com.op.gen;
|
||
|
|
||
|
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 GenApplication {
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(GenApplication.class, args);
|
||
|
System.err.println("代码生成器启动成功\n"
|
||
|
+ " ___ _ __ ______ __ _ ___ _ __ \r\n"
|
||
|
+ " / _ \\| '_ \\______/ _` |/ _ \\ '_ \\ \r\n"
|
||
|
+ "| (_) | |_) | | (_| | __/ | | |\r\n"
|
||
|
+ " \\___/| .__/ \\__, |\\___|_| |_|\r\n"
|
||
|
+ " | | __/ | \r\n"
|
||
|
+ " |_| |___/ \r\n");
|
||
|
}
|
||
|
}
|