We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8f127f commit 3946bfbCopy full SHA for 3946bfb
2 files changed
pom.xml
@@ -17,7 +17,7 @@
17
</parent>
18
<groupId>io.github.devtony101</groupId>
19
<artifactId>firebaseauth</artifactId>
20
- <version>1.2.0</version>
+ <version>1.2.1</version>
21
<name>firebaseauth</name>
22
<description>Library used to abstract api authentication with Firebase</description>
23
<properties>
src/main/java/firebaseauth/annotation/EnableFirebaseAuth.java
@@ -0,0 +1,12 @@
1
+package firebaseauth.annotation;
2
+
3
+import firebaseauth.infrastructure.utils.FirebaseRunnerAfterInit;
4
+import org.springframework.context.annotation.Import;
5
6
+import java.lang.annotation.*;
7
8
+@Target({ElementType.TYPE})
9
+@Retention(RetentionPolicy.RUNTIME)
10
+@Import({FirebaseRunnerAfterInit.class})
11
+public @interface EnableFirebaseAuth {
12
+}
0 commit comments