UNPKG

trpc-to-openapi

Version:
8 lines 324 B
import { createOpenApiNodeHttpHandler } from './node-http/index.mjs'; export const createOpenApiKoaMiddleware = (opts) => { const openApiHttpHandler = createOpenApiNodeHttpHandler(opts); return async (ctx, next) => { await openApiHttpHandler(ctx.req, ctx.res, next); }; }; //# sourceMappingURL=koa.js.map