26 lines
750 B
Java
26 lines
750 B
Java
package com.tongran.frp;
|
|||
|
|
|
||
|
|
import com.tongran.common.security.annotation.EnableCustomConfig;
|
||
|
|
import com.tongran.common.security.annotation.EnableRyFeignClients;
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 平台管理模块
|
||
|
|
*
|
||
|
|
* @author tongran
|
||
|
|
*/
|
||
|
|
@EnableCustomConfig
|
||
|
|
@EnableRyFeignClients
|
||
|
|
@SpringBootApplication
|
||
|
|
@EnableAsync
|
||
|
|
public class TongRanFrpApplication
|
||
|
|
{
|
||
|
|
public static void main(String[] args)
|
||
|
|
{
|
||
|
|
SpringApplication.run(com.tongran.frp.TongRanFrpApplication.class, args);
|
||
|
|
System.out.println("(♥◠‿◠)ノ゙ TongRanFrp模块启动成功 ლ(´ڡ`ლ)゙");
|
||
|
|
}
|
||
|
|
}
|