1 2 3 4 5 6 7
pub trait Database: Send + Sync {} pub struct InMemoryShepherdDB; impl Database for InMemoryShepherdDB { // Implement the methods required by ShepherdDB trait }