22 lines
586 B
Java
22 lines
586 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 : GovernanceApplication
|
|
* @Description :
|
|
* @Author : FJJ
|
|
* @Date: 2023-12-20 11:16
|
|
*/
|
|
@EnableDiscoveryClient
|
|
@SpringBootApplication
|
|
|
|
public class GovernanceApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(GovernanceApplication.class, args);
|
|
}
|
|
}
|