1 2 3 4 5 6 7 8
// APCore Protocol — Events module // Spec reference: Event emission and subscription pub mod emitter; pub mod subscribers; pub use emitter::{ApCoreEvent, EventEmitter}; pub use subscribers::{EventSubscriber, WebhookSubscriber};