made-core 0.8.0

Domain core of MADE: entities, value objects, events, ports. No IO.
Documentation
1
2
3
4
5
6
7
use async_trait::async_trait;

/// Payload-free wake signal for appended host activity.
#[async_trait]
pub trait CeremonyAgentActivitySubscriptionPort: Send {
    async fn wait(&mut self);
}