feat(server): extract question handler factory into packages/server (#22503)

This commit is contained in:
Shoubhit Dash 2026-04-15 05:05:00 +05:30 committed by GitHub
commit bee094ff7b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 55 additions and 26 deletions

View file

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