Skip to content

Commit 3946bfb

Browse files
committed
adding firebase auth init annotation
1 parent d8f127f commit 3946bfb

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</parent>
1818
<groupId>io.github.devtony101</groupId>
1919
<artifactId>firebaseauth</artifactId>
20-
<version>1.2.0</version>
20+
<version>1.2.1</version>
2121
<name>firebaseauth</name>
2222
<description>Library used to abstract api authentication with Firebase</description>
2323
<properties>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)