1 2 3 4 5
use crate::StoreError; pub fn fetch(_reference: &str) -> Result<Vec<u8>, StoreError> { Err(StoreError::UnsupportedScheme("warg".into())) }