pub trait ContentStore: Send + Sync + 'static { // Required method fn get(&self, hash_hex: &str) -> Result<Option<Vec<u8>>>; }
Trait for content storage that can be used by WebRTC peers
Get content by hex hash