6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
import type { RequestHandler } from "./$types"
|
|
|
|
export const POST: RequestHandler = async () => {
|
|
return new Response()
|
|
}
|