component-store 0.3.0

Store abstraction and verification for Greentic components
Documentation
1
2
3
4
5
use crate::StoreError;

pub fn fetch(_reference: &str) -> Result<Vec<u8>, StoreError> {
    Err(StoreError::UnsupportedScheme("oci".into()))
}