mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-09 15:11:29 -07:00
8 lines
167 B
Handlebars
8 lines
167 B
Handlebars
import type { Env } from './context'
|
|
|
|
export default {
|
|
fetch: (_request, _env, _ctx) => {
|
|
return new Response('hello, world!')
|
|
},
|
|
} satisfies ExportedHandler<Env>
|