31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package com.ruoyi.auth;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.cloud.client.SpringCloudApplication;
|
|
import com.ruoyi.common.security.annotation.EnableRyFeignClients;
|
|
|
|
/**
|
|
* 认证授权中心
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
@EnableRyFeignClients
|
|
@SpringCloudApplication
|
|
public class RuoYiAuthApplication
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
SpringApplication.run(RuoYiAuthApplication.class, args);
|
|
System.out.println("(♥◠‿◠)ノ゙ 认证授权中心启动成功 ლ(´ڡ`ლ)゙ \n" +
|
|
" .-------. ____ __ \n" +
|
|
" | _ _ \\ \\ \\ / / \n" +
|
|
" | ( ' ) | \\ _. / ' \n" +
|
|
" |(_ o _) / _( )_ .' \n" +
|
|
" | (_,_).' __ ___(_ o _)' \n" +
|
|
" | |\\ \\ | || |(_,_)' \n" +
|
|
" | | \\ `' /| `-' / \n" +
|
|
" | | \\ / \\ / \n" +
|
|
" ''-' `'-' `-..-' ");
|
|
}
|
|
}
|