is there a way to skip repeating the `@Serializabl...
# serialization
k
is there a way to skip repeating the
@Serializable(with = ...)
annotation on every field? Can I somehow specify my custom serializer for a class in a global way?
d
You can do
UseSerializers
for and entire file.
k
thanks, it'll work... too bad I cant specify it on a package level...
⬆️ 1