Files
http.md/src/execution/handlers/handlers.ts
2025-05-18 20:31:54 +02:00

21 lines
598 B
TypeScript

import { ExecutionHandler } from "../execution.js";
import { fileHandler } from "./handlers.md.js";
import { httpHandler } from "./handlers.http.js";
import { inputHandler } from "./handlers.input.js";
import { rawMdHandler } from "./handlers.raw-md.js";
import { responseHandler } from "./handlers.response.js";
import { textHandler } from "./handlers.text.js";
import { codeHandler } from "./handlers.code.js";
const handlers = [
fileHandler,
httpHandler,
responseHandler,
textHandler,
inputHandler,
rawMdHandler,
codeHandler,
] satisfies ExecutionHandler[];
export { handlers };