mod.rs
1 pub mod blobs; 2 pub mod manifests; 3 4 const CONTENT_TYPE_HEADER_NAME: &str = "Content-Type"; 5 const CONTENT_RANGE_HEADER_NAME: &str = "Content-Range"; 6 const CONTENT_LENGTH_HEADER_NAME: &str = "Content-Length"; 7 const LOCATION_HEADER_NAME: &str = "Location"; 8 const RANGE_HEADER_NAME: &str = "Range"; 9 const DOCKER_CONTENT_DIGEST_HEADER_NAME: &str = "Docker-Content-Digest"; 10 11 #[get("/v2")] 12 pub fn get_spec_compliance() -> () { 13 () 14 }