mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-22 21:33:42 +02:00
18 lines
346 B
TypeScript
18 lines
346 B
TypeScript
|
import { OpenAPIRegistry } from "@asteasolutions/zod-to-openapi";
|
||
|
|
||
|
export const registry = new OpenAPIRegistry();
|
||
|
|
||
|
export const bearerAuth = registry.registerComponent(
|
||
|
"securitySchemes",
|
||
|
"Bearer Auth",
|
||
|
{
|
||
|
type: "http",
|
||
|
scheme: "bearer"
|
||
|
}
|
||
|
);
|
||
|
|
||
|
export enum OpenAPITags {
|
||
|
Site = "Site",
|
||
|
Org = "Organization"
|
||
|
}
|