1 2 3 4 5 6 7
use dashmap::DashMap; use yggdrasil_shared::records::Url; pub struct BibliographyStorage { source: Url, kv_store: DashMap<String, String>, }