mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
10 lines
240 B
TypeScript
10 lines
240 B
TypeScript
/// <reference types="@cloudflare/workers-types" />
|
|
|
|
import { serve } from "bknd/adapter/cloudflare";
|
|
|
|
export default serve({
|
|
onBuilt: async (app) => {
|
|
app.modules.server.get("/custom", (c) => c.json({ hello: "world" }));
|
|
}
|
|
});
|