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