Alejandro
Alejandro
I can take `right`, `rightOrFail`, `rightOrFailException`, `rightOrFailWith`
@sideeffffect I am trying to implement `onLeft` and `onRight`. Those methods are implemented in terms of `identity` and `+++` in ZIO. Make sense to implement `identity` in ZPure?
I uploaded the complete repository: [micronaut-ktor-api](https://github.com/atrianac/micronaut-ktor-api)
@willbuck Thanks, I will do!
The issue in Ktor Project is reported here: https://youtrack.jetbrains.com/issue/KTOR-1307
@willbuck The Ktor team answered the question. It is necessary to add` --initialize-at-build-time=io.ktor,kotlinx,kotlin` option to native-image command and this snippet to your `reflection-config.json`` ```json [ { "name": "kotlin.reflect.jvm.internal.ReflectionFactoryImpl", "allDeclaredConstructors":true },...
@willbuck thanks. I just updated the original repository with the right changes.