Skip to content

Commit 7475806

Browse files
committed
add nextjs endpoint
1 parent f4ce531 commit 7475806

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { NextResponse } from 'next/server';
2+
3+
export async function GET() {
4+
return NextResponse.json({ msg: 'Success!' });
5+
}

0 commit comments

Comments
 (0)