File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import type {
23
23
} from "@auth/core/adapters"
24
24
import type { Pool } from "@neondatabase/serverless"
25
25
26
- export default function PostgresAdapter ( client : Pool ) : Adapter {
26
+ export default function NeonAdapter ( client : Pool ) : Adapter {
27
27
return {
28
28
async createVerificationToken (
29
29
verificationToken : VerificationToken
Original file line number Diff line number Diff line change 1
1
import { runBasicTests } from "utils/adapter"
2
- import PostgresAdapter from "../src"
2
+ import NeonAdapter from "../src"
3
3
import { neonConfig , Pool } from "@neondatabase/serverless"
4
4
5
5
// Using websockets
@@ -27,7 +27,7 @@ const client = new Pool({
27
27
} )
28
28
29
29
runBasicTests ( {
30
- adapter : PostgresAdapter ( client ) ,
30
+ adapter : NeonAdapter ( client ) ,
31
31
db : {
32
32
disconnect : async ( ) => {
33
33
await client . end ( )
You can’t perform that action at this time.
0 commit comments