This commit is contained in:
tanghc
2019-02-27 12:37:14 +08:00
parent 85d61d2f1e
commit 46a546f1da
196 changed files with 13210 additions and 47 deletions

View File

@@ -0,0 +1,16 @@
package com.gitee.sop.registry;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@EnableEurekaServer
@SpringBootApplication
public class SopRegistryApplication {
public static void main(String[] args) {
SpringApplication.run(SopRegistryApplication.class, args);
}
}