|
@@ -0,0 +1,21 @@
|
|
|
+package com.fire.customer;
|
|
|
+
|
|
|
+import org.springframework.boot.SpringApplication;
|
|
|
+import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
+import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author: liuliu
|
|
|
+ * @ClassName: CustomerApplication
|
|
|
+ * @Description: TODO 客户启动项
|
|
|
+ * @date: 2021-05-10 18:51
|
|
|
+ */
|
|
|
+@SpringBootApplication
|
|
|
+@EnableDiscoveryClient
|
|
|
+public class CustomerApplication {
|
|
|
+
|
|
|
+ public static void main(String[] args) {
|
|
|
+ SpringApplication.run(CustomerApplication.class, args);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|