const res = yield* client.post('http://cos-fe-api:3000/api').pipe(
Effect.flatMap(HttpClientResponse.filterStatusOk),
Effect.flatMap(
HttpClientResponse.schemaBodyJson(
Schema.Struct({
ok: Schema.Boolean,
data: Schema.String,
})
)
)
);
const res = yield* client.post('http://cos-fe-api:3000/api').pipe(
Effect.flatMap(HttpClientResponse.filterStatusOk),
Effect.flatMap(
HttpClientResponse.schemaBodyJson(
Schema.Struct({
ok: Schema.Boolean,
data: Schema.String,
})
)
)
);