From 301ac7fa6f583f19b4f4a97bd9b469049b5ff10a Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期二, 15 七月 2025 17:22:50 +0800
Subject: [PATCH] 添加3个模块

---
 se-discover/src/main/java/com/terra/discover/SeDiscoverApp.java |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/se-discover/src/main/java/com/terra/discover/SeDiscoverApp.java b/se-discover/src/main/java/com/terra/discover/SeDiscoverApp.java
new file mode 100644
index 0000000..0ae62e7
--- /dev/null
+++ b/se-discover/src/main/java/com/terra/discover/SeDiscoverApp.java
@@ -0,0 +1,20 @@
+package com.terra.discover;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.context.annotation.EnableAspectJAutoProxy;
+import org.springframework.scheduling.annotation.EnableAsync;
+import springfox.documentation.swagger2.annotations.EnableSwagger2;
+
+@EnableAsync
+@EnableSwagger2
+@EnableAspectJAutoProxy(exposeProxy = true)
+@SpringBootApplication(scanBasePackages = {"com.terra.discover.*"})
+public class SeDiscoverApp
+{
+    public static void main(String[] args)
+    {
+        SpringApplication.run(SeDiscoverApp.class, args);
+        System.out.println("----------鐭ヨ瘑鍙戠幇鍚姩鎴愬姛----------  \n");
+    }
+}

--
Gitblit v1.9.3