package com.ard.file; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; /** * 文件服务 * * @author ard */ @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class }) public class ArdFileApplication { public static void main(String[] args) { SpringApplication.run(ArdFileApplication.class, args); System.out.println("(♥◠‿◠)ノ゙ 文件服务模块启动成功 ლ(´ڡ`ლ)゙ \n" + " ___ ___ \n" + " /\\ \\ /\\ \\ _____ \n" + " /::\\ \\ /::\\ \\ /::\\ \\ \n" + " /:/\\:\\ \\ /:/\\:\\__\\ /:/\\:\\ \\ \n" + " /:/ /::\\ \\ /:/ /:/ / /:/ \\:\\__\\ \n" + " /:/_/:/\\:\\__\\ /:/_/:/__/___ /:/__/ \\:|__| \n" + " \\:\\/:/ \\/__/ \\:\\/:::::/ / \\:\\ \\ /:/ / \n" + " \\::/__/ \\::/~~/~~~~ \\:\\ /:/ / \n" + " \\:\\ \\ \\:\\~~\\ \\:\\/:/ / \n" + " \\:\\__\\ \\:\\__\\ \\::/ / \n" + " \\/__/ \\/__/ \\/__/ \n"); } }