Is there a plugin that generates kotlinx.serializa...
# multiplatform
t
Is there a plugin that generates kotlinx.serialization polymorphic modules? Let's say I have an interface and I want all the classes implementing that interface collected into a serialization module automatically. This is for open polymorphism of course. Seems doable with KSP.
z
If you mark the interface as sealed and serializable i believe this would produce the desired result
t
I would like to avoid the sealing to make it extensible. This is a highly modular system so I expect other modules to extend the interface as well.