prasi-srv/internal/main/handler/http-handler.ts

8 lines
199 B
TypeScript

import type { PrasiHttpHandler, PrasiServer } from "typings/server";
export const createHttpHandler: () => PrasiHttpHandler = () => {
return async () => {
return new Response("wuwu");
};
};