updated events
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import { NextRequest, NextResponse } from "next/server";
|
||||
|
||||
export async function POST(req: NextRequest) {
|
||||
const { type } = await req.json();
|
||||
}
|
||||
|
||||
export async function GET(req: NextRequest, { params }: { params: Promise<{ type: string }> }) {
|
||||
const { type } = await params;
|
||||
}
|
||||
Reference in New Issue
Block a user