DgtisAuthApplication.java 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. package com.dgtis.auth;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.cloud.client.SpringCloudApplication;
  4. import com.dgtis.common.security.annotation.EnableRyFeignClients;
  5. /**
  6. * 认证授权中心
  7. *
  8. * @author dgtis
  9. */
  10. @EnableRyFeignClients
  11. @SpringCloudApplication
  12. public class DgtisAuthApplication
  13. {
  14. public static void main(String[] args)
  15. {
  16. SpringApplication.run(DgtisAuthApplication.class, args);
  17. System.out.println("(♥◠‿◠)ノ゙ 认证授权中心启动成功 ლ(´ڡ`ლ)゙ \n" +
  18. " .-------. ____ __ \n" +
  19. " | _ _ \\ \\ \\ / / \n" +
  20. " | ( ' ) | \\ _. / ' \n" +
  21. " |(_ o _) / _( )_ .' \n" +
  22. " | (_,_).' __ ___(_ o _)' \n" +
  23. " | |\\ \\ | || |(_,_)' \n" +
  24. " | | \\ `' /| `-' / \n" +
  25. " | | \\ / \\ / \n" +
  26. " ''-' `'-' `-..-' ");
  27. }
  28. }