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.
22 lines
636 B
Java
22 lines
636 B
Java
package com.ruoyi.gen;
|
|
|
|
import com.ruoyi.common.security.annotation.EnableCustomConfig;
|
|
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* 代码生成
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
@EnableCustomConfig
|
|
@EnableDubbo
|
|
@SpringBootApplication
|
|
public class RuoYiGenApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(RuoYiGenApplication.class, args);
|
|
System.out.println("(♥◠‿◠)ノ゙ 代码生成模块启动成功 ლ(´ڡ`ლ)゙ ");
|
|
}
|
|
}
|