webhook configs for users, changes to system
Some checks are pending
check / check (push) Waiting to run

This commit is contained in:
KS Jannette
2026-03-01 19:06:32 -05:00
parent 42a64fc043
commit 6735000050
5 changed files with 7 additions and 32 deletions

View File

@@ -1,4 +1,3 @@
// Package firebase provides Firebase authentication integration.
package firebase
import (
@@ -17,7 +16,6 @@ var ( //nolint:gochecknoglobals
errInit error //nolint:gochecknoglobals
)
// Init initializes the Firebase app and auth client using the given project ID.
func Init(projectID string) error {
once.Do(func() {
ctx := context.Background()
@@ -48,7 +46,6 @@ func Init(projectID string) error {
return errInit
}
// Auth returns the initialized Firebase auth client.
func Auth() *auth.Client {
return authClient
}