event_store 0.1.1

Crate to deal with every aspect of an eventstore
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::prelude::RecordedEvents;
use actix::prelude::*;

#[derive(Debug)]
pub struct Subscriber {
    pub recipient: Recipient<RecordedEvents>,
}

impl Actor for Subscriber {
    type Context = Context<Self>;
}