Is there any way to find a list of all classes ann...
# serialization
e
Is there any way to find a list of all classes annotated with
@Serializable
? Preferably in a multiplatform-compatible way
I suppose classgraph could be used for scanning for classes, but it would be JVM-only
👍 1
h
You could write a KSP plugin, but it only scans your direct source code, code annotated in dependencies.
👍 1