This commit is contained in:
Dax Raad
2025-06-11 18:45:18 -04:00
parent 468cec545a
commit 9b2b610920
3 changed files with 2 additions and 5 deletions

View File

@@ -5,7 +5,6 @@ import type { CommandModule } from "yargs"
export const GenerateCommand = {
command: "generate",
describe: "Generate OpenAPI and event specs",
handler: async () => {
const specs = await Server.openapi()
const dir = "gen"
@@ -17,4 +16,3 @@ export const GenerateCommand = {
)
},
} satisfies CommandModule