<@U766RQY2D> if you get too annoyed with it you ca...
# http4k
d
@Razvan if you get too annoyed with it you can also call CustomJackson.autoBody()
r
Thank, I'll try to remeber as Body.auto does not always find the
auto
extension function have to add the import manually.
d
Yes - it’s annoying that idea doesn’t find those imports.
v
I use a helper since importing manually is annoying:
Copy code
inline fun<reified T : Any> makeLens(): BiDiBodyLens<T> {
    return Body.auto<T>().toLens()
}