I have api that takes `KSerializer<List<Foo>>` Ho...
# serialization
u
I have api that takes
KSerializer<List<Foo>>
How do I get the List serializer reference? I have
ListSerializer(Foo.serializer())
but that creates a new instance every time, i.e. it's not cached the way it would if I were to just leave it up reified generics to get the serializer via
serializersModule.serializer<List<Foo>>()