srt_cloud/srt-data-development/src/main/java/net/srt/DevelopmentApp.java

12 lines
322 B
Java

package net.srt;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
@EnableFeignClients
@EnableDiscoveryClient
@SpringBootApplication
public class DevelopmentApp {
}