| 5 | import { oneTimeToken } from 'better-auth/plugins' |
| 6 | |
| 7 | export interface VerifyAuthOptions { |
| 8 | /** Better Auth shared secret. Must match the apps/sim Better Auth secret. */ |
| 9 | secret: string |
| 10 | /** Public-facing Better Auth URL (usually same as NEXT_PUBLIC_APP_URL). */ |
| 11 | baseURL: string |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Minimal Better Auth instance used by services that only need to verify |
nothing calls this directly
no outgoing calls
no test coverage detected