mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import { getApp } from "~/bknd";
|
|
|
|
const handler = async (args: { request: Request }) => {
|
|
const app = await getApp(args);
|
|
return app.fetch(args.request);
|
|
};
|
|
|
|
export const loader = handler;
|
|
export const action = handler;
|