- Create internal/adapters/firebase/auth.go with Auth, noopAuth, NewAuthOrNoop (renamed from FirebaseAuth, noopTokenVerifier, NewFirebaseAuthOrNoop) - Reduce internal/auth/firebase.go to TokenVerifier interface only - Remove PhotoSearcher interface from adapters/pexels (belongs to consumers) - Update wire.go and wire_gen.go to use firebase.NewAuthOrNoop Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
235 B
Go
9 lines
235 B
Go
package auth
|
|
|
|
import "context"
|
|
|
|
// TokenVerifier abstracts Firebase token verification for testability.
|
|
type TokenVerifier interface {
|
|
VerifyToken(ctx context.Context, idToken string) (uid, email, name, avatarURL string, err error)
|
|
}
|