component_store/
oci.rs

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