(Not sure if this belongs here or in <#C0B8ZTWE4|>...
# announcements
z
(Not sure if this belongs here or in #C0B8ZTWE4 since I don't know the solution yet). I have a custom annotation:
Copy code
@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.RUNTIME)
@MustBeDocumented
annotation class Listener
And some functions in some services like:
Copy code
@Service
class MyService {
    @Listener
    fun onNewThing(thing: Thing) { 
        ...
   }
}