import lombok.extern.slf4j.Slf4j;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableAsync;

/**
* 启动类
* @Date 2020/5/22
**/
@SpringBootApplication(scanBasePackages = "com.zeus")
@MapperScan("com.baomidou.mybatisplus.samples.quickstart.mapper")
@Slf4j
@EnableAsync
public class ZeusAdminApplication {
public static void main(String[] args) {
SpringApplication.run(ZeusAdminApplication.class, args);
log.info(ZeusAdminApplication.class.getSimpleName() + " is success!");
log.info("\n" +
"\n" +
"// _ooOoo_ //\n" +
"// o8888888o //\n" +
"// 88\" . \"88 //\n" +
"// (| ^_^ |) //\n" +
"// O\\ = /O //\n" +
"// ____/`---'\\____ //\n" +
"// .' \\\\| |// `. //\n" +
"// / \\\\||| : |||// \\ //\n" +
"// / _||||| -:- |||||- \\ //\n" +
"// | | \\\\\\ - /// | | //\n" +
"// | \\_| ''\\---/'' | | //\n" +
"// \\ .-\\__ `-` ___/-. / //\n" +
"// ___`. .' /--.--\\ `. . ___ //\n" +
"// .\"\" '< `.___\\_<|>_/___.' >'\"\". //\n" +
"// | | : `- \\`.;`\\ _ /`;.`/ - ` : | | //\n" +
"// \\ \\ `-. \\_ __\\ /__ _/ .-` / / //\n" +
"// ========`-.____`-.___\\_____/___.-`____.-'======== //\n" +
"// `=---=' //\n" +
"// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ //\n" +
"// 佛祖保佑 永不宕机 永无BUG //\n" +
"");

}
}