|
|
@@ -0,0 +1,22 @@
|
|
|
+package com.github.microservice.auth.server;
|
|
|
+
|
|
|
+import com.github.microservice.auth.client.event.auth.OrganizationApplicationEvent;
|
|
|
+import org.springframework.context.ApplicationEvent;
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+
|
|
|
+import java.time.Clock;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author TRX
|
|
|
+ * @date 2024/5/29
|
|
|
+ */
|
|
|
+@Component
|
|
|
+public class TestAuthEvent extends OrganizationApplicationEvent {
|
|
|
+
|
|
|
+
|
|
|
+ public TestAuthEvent(Object source) {
|
|
|
+ super(source);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|