mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2026-05-04 19:11:27 +08:00
20 lines
555 B
Java
20 lines
555 B
Java
package com.ruoyi.system;
|
|
|
|
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* 系统模块
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
@EnableDubbo
|
|
@SpringBootApplication
|
|
public class RuoYiSystemApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(RuoYiSystemApplication.class, args);
|
|
System.out.println("(♥◠‿◠)ノ゙ 系统模块启动成功 ლ(´ڡ`ლ)゙ ");
|
|
}
|
|
}
|