This commit is contained in:
Matthieu Jolimaitre 2025-06-17 14:07:59 +02:00
commit 41ee5c3be8
12 changed files with 841 additions and 0 deletions

6
src/common.rs Normal file
View file

@ -0,0 +1,6 @@
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub enum Event {
Append([u8; 16], String, Vec<u8>),
Create([u8; 16], String),
Stop,
}