(context.Context, string)
| 31 | // UserAuthClient is an interface that defines the methods for interacting with a user authentication provider. |
| 32 | type UserAuthClient interface { |
| 33 | VerifyIDToken(context.Context, string) (*firebaseauth.Token, error) |
| 34 | } |
| 35 | |
| 36 | // NewGCIPAuthenticator creates a new GCIPAuthenticator instance. |
no outgoing calls
no test coverage detected