package com.ard.job; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import com.ard.common.security.annotation.EnableCustomConfig; import com.ard.common.security.annotation.EnableRyFeignClients; /** * 定时任务 * * @author ard */ @EnableCustomConfig @EnableRyFeignClients @SpringBootApplication public class ArdJobApplication { public static void main(String[] args) { SpringApplication.run(ArdJobApplication.class, args); System.out.println("(♥◠‿◠)ノ゙ 定时任务模块启动成功 ლ(´ڡ`ლ)゙ \n" + " ___ ___ \n" + " /\\ \\ /\\ \\ _____ \n" + " /::\\ \\ /::\\ \\ /::\\ \\ \n" + " /:/\\:\\ \\ /:/\\:\\__\\ /:/\\:\\ \\ \n" + " /:/ /::\\ \\ /:/ /:/ / /:/ \\:\\__\\ \n" + " /:/_/:/\\:\\__\\ /:/_/:/__/___ /:/__/ \\:|__| \n" + " \\:\\/:/ \\/__/ \\:\\/:::::/ / \\:\\ \\ /:/ / \n" + " \\::/__/ \\::/~~/~~~~ \\:\\ /:/ / \n" + " \\:\\ \\ \\:\\~~\\ \\:\\/:/ / \n" + " \\:\\__\\ \\:\\__\\ \\::/ / \n" + " \\/__/ \\/__/ \\/__/ \n"); } }