Commit 443b65ce by chentian

imageapi基础配置

parent 091884c3
package com.founder.modules;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@SpringBootApplication
@ComponentScan(basePackages = {"com.founder"})
public class ImageApiApplication {
public static void main(String[] args) {
SpringApplication.run(ImageApiApplication.class, args);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment