File size: 413 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
const helloHandler = async () => {
if (typeof WebSocket === 'undefined') {
throw new Error('missing WebSocket constructor!!')
}
return new Response('hello, world')
}
export const GET = helloHandler
export const HEAD = helloHandler
export const OPTIONS = helloHandler
export const POST = helloHandler
export const PUT = helloHandler
export const DELETE = helloHandler
export const PATCH = helloHandler
|