手环模块
This commit is contained in:
parent
28a5db1fcf
commit
47f32c2bec
|
|
@ -0,0 +1,32 @@
|
||||||
|
package com.bonus.bracelet;
|
||||||
|
|
||||||
|
import com.bonus.common.security.annotation.EnableCustomConfig;
|
||||||
|
import com.bonus.common.security.annotation.EnableRyFeignClients;
|
||||||
|
import com.bonus.common.swagger.annotation.EnableCustomSwagger2;
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 手环模块
|
||||||
|
*
|
||||||
|
* @author bonus
|
||||||
|
*/
|
||||||
|
@EnableCustomConfig
|
||||||
|
@EnableCustomSwagger2
|
||||||
|
@EnableRyFeignClients
|
||||||
|
@SpringBootApplication
|
||||||
|
public class BonusBraceletApplication {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(BonusBraceletApplication.class, args);
|
||||||
|
System.err.println("(♥◠‿◠)ノ゙ 手环模块启动成功 ლ(´ڡ`ლ)゙ \n" +
|
||||||
|
" .-------. ____ __ \n" +
|
||||||
|
" | _ _ \\ \\ \\ / / \n" +
|
||||||
|
" | ( ' ) | \\ _. / ' \n" +
|
||||||
|
" |(_ o _) / _( )_ .' \n" +
|
||||||
|
" | (_,_).' __ ___(_ o _)' \n" +
|
||||||
|
" | |\\ \\ | || |(_,_)' \n" +
|
||||||
|
" | | \\ `' /| `-' / \n" +
|
||||||
|
" | | \\ / \\ / \n" +
|
||||||
|
" ''-' `'-' `-..-' ");
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue