Files
saas-houduan/tongran-modules/tongran-gen/src/main/java/com/tongran/gen/TongRanGenApplication.java
T

33 lines
1.2 KiB
Java
Raw Normal View History

2025-11-24 16:19:09 +08:00
package com.tongran.gen;
2025-08-11 18:46:44 +08:00
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
2025-11-24 16:19:09 +08:00
import com.tongran.common.security.annotation.EnableCustomConfig;
import com.tongran.common.security.annotation.EnableRyFeignClients;
2025-08-11 18:46:44 +08:00
/**
* 代码生成
*
2025-11-24 16:19:09 +08:00
* @author tongran
2025-08-11 18:46:44 +08:00
*/
@EnableCustomConfig
@EnableRyFeignClients
@SpringBootApplication
2025-11-24 16:19:09 +08:00
public class TongRanGenApplication
2025-08-11 18:46:44 +08:00
{
public static void main(String[] args)
{
2025-11-24 16:19:09 +08:00
SpringApplication.run(TongRanGenApplication.class, args);
2025-08-11 18:46:44 +08:00
System.out.println("(♥◠‿◠)ノ゙ 代码生成模块启动成功 ლ(´ڡ`ლ)゙ \n" +
" .-------. ____ __ \n" +
" | _ _ \\ \\ \\ / / \n" +
" | ( ' ) | \\ _. / ' \n" +
" |(_ o _) / _( )_ .' \n" +
" | (_,_).' __ ___(_ o _)' \n" +
" | |\\ \\ | || |(_,_)' \n" +
" | | \\ `' /| `-' / \n" +
" | | \\ / \\ / \n" +
" ''-' `'-' `-..-' ");
}
}