pub trait ModuleStore: Send + Sync {
    fn get(&self, specifier: &str) -> Option<String>;
    fn put(&self, specifier: String, code: String);
}

Required Methods

Implementors