feat(server): extract question httpapi contract into packages/server (#22502)

This commit is contained in:
Shoubhit Dash 2026-04-15 04:54:40 +05:30 committed by GitHub
commit 678d8f6ab2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 131 additions and 81 deletions

View file

@ -1,3 +1,4 @@
export { openapi } from "./openapi.js"
export { api } from "./definition/api.js"
export { questionApi, QuestionReply, QuestionRequest } from "./definition/question.js"
export type { OpenApiSpec, ServerApi } from "./types.js"