1 2 3 4 5 6 7 8 9
use rseata_core::event::event::TransactionEvent; use std::sync::Arc; use tokio::sync::Mutex; // pub trait AuditLogger {} pub struct AuditLogger { pub log: Arc<Mutex<Vec<TransactionEvent>>>, }