eventstore/backend/
model.rs

1#[derive(Debug)]
2pub struct Event {
3    pub id: uuid::Uuid,
4    pub version: u32,
5    pub data: Vec<u8>,
6}