aboutsummaryrefslogtreecommitdiffstats
path: root/packages/open-api/lib/common.ts
blob: d1ac43e1570182f8c953e0a8363dabe2bb37cbb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { OpenAPIRegistry } from "@asteasolutions/zod-to-openapi";

export const registry = new OpenAPIRegistry();
export const BearerAuth = registry.registerComponent(
  "securitySchemes",
  "bearerAuth",
  {
    type: "http",
    scheme: "bearer",
    bearerFormat: "JWT",
  },
);