| 3 | import { connect } from "@vercel/connect/authjs"; |
| 4 | import { authProviders } from "./auth-providers"; |
| 5 | export interface AuthJsSession { |
| 6 | providerId: string; |
| 7 | issuer: string; |
| 8 | profile: { |
| 9 | sub: string; |
| 10 | name?: string; |
| 11 | email?: string; |
| 12 | image?: string; |
| 13 | }; |
| 14 | } |
| 15 | |
| 16 | const authConfig: AuthConfig = { |
| 17 | secret: process.env.AUTH_SECRET, |
nothing calls this directly
no outgoing calls
no test coverage detected