shepherd-rs 0.1.0

Shepherd is a resilient, non-blocking orchestrator that persistently transforms and delivers data—built for remote, compute-heavy workloads.
Documentation
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
}