Closed majk-p closed 3 years ago
When recently migrating to Tapir 0.17.x I've noticed missing implicit Schema:
Schema
could not find implicit value for evidence parameter type sttp.tapir.Schema[...]
Fortunately this has been mentioned in the release notes (https://github.com/softwaremill/tapir/releases/tag/v0.17.0), fixed by adding import import sttp.tapir.generic.auto._.
import sttp.tapir.generic.auto._
@adamw WDYT about adding @implicitNotFound annotation to Schema, suggesting that the import might fix the issue?
@implicitNotFound
Sure, sounds like a good way to help users :)
Then I'm on it :wink:
When recently migrating to Tapir 0.17.x I've noticed missing implicit
Schema
:Fortunately this has been mentioned in the release notes (https://github.com/softwaremill/tapir/releases/tag/v0.17.0), fixed by adding import
import sttp.tapir.generic.auto._
.@adamw WDYT about adding
@implicitNotFound
annotation toSchema
, suggesting that the import might fix the issue?