mirror of
https://github.com/morten-olsen/http.md.git
synced 2026-02-08 00:46:28 +01:00
init
This commit is contained in:
18
src/execution/handlers/handlers.ts
Normal file
18
src/execution/handlers/handlers.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { ExecutionHandler } from "../execution.js";
|
||||
import { fileHandler } from "./handlers.file.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";
|
||||
|
||||
const handlers = [
|
||||
fileHandler,
|
||||
httpHandler,
|
||||
responseHandler,
|
||||
textHandler,
|
||||
inputHandler,
|
||||
rawMdHandler,
|
||||
] satisfies ExecutionHandler[];
|
||||
|
||||
export { handlers };
|
||||
Reference in New Issue
Block a user