(body: unknown, status = 200)
| 30 | const decodeDcrRequestBody = Schema.decodeUnknownSync(Schema.fromJsonString(DcrRequestBody)); |
| 31 | |
| 32 | const sendJson = (body: unknown, status = 200): HttpServerResponse.HttpServerResponse => |
| 33 | HttpServerResponse.jsonUnsafe(body, { status }); |
| 34 | |
| 35 | const notFound = (): HttpServerResponse.HttpServerResponse => |
| 36 | HttpServerResponse.empty({ status: 404 }); |
no outgoing calls
no test coverage detected