22 lines
598 B
Java
22 lines
598 B
Java
package net.srt;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
|
|
/**
|
|
* @ClassName : ${NAME}
|
|
* @Description : ${description}
|
|
* @Author : FJJ
|
|
* @Date: 2023-12-27 21:47
|
|
*/
|
|
@EnableFeignClients
|
|
@EnableDiscoveryClient
|
|
@SpringBootApplication
|
|
public class AssetsApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(AssetsApplication.class, args);
|
|
}
|
|
}
|