(id: QuestionV2.ID)
| 6 | import { response } from "../location" |
| 7 | |
| 8 | function missingRequest(id: QuestionV2.ID) { |
| 9 | return new QuestionNotFoundError({ requestID: id, message: `Question request not found: ${id}` }) |
| 10 | } |
| 11 | |
| 12 | export const QuestionHandler = HttpApiBuilder.group(Api, "server.question", (handlers) => |
| 13 | Effect.gen(function* () { |