mirror of
https://github.com/project-zot/zot.git
synced 2026-06-16 04:17:55 +08:00
36c9631000
Following the spec defined here https://github.com/opencontainers/distribution-spec/tree/main/extensions Signed-off-by: Shivam Mishra <shimish2@cisco.com>
13 lines
446 B
Go
13 lines
446 B
Go
package constants
|
|
|
|
const (
|
|
ArtifactSpecRoutePrefix = "/oras/artifacts/v1"
|
|
RoutePrefix = "/v2"
|
|
DistAPIVersion = "Docker-Distribution-API-Version"
|
|
DistContentDigestKey = "Docker-Content-Digest"
|
|
BlobUploadUUID = "Blob-Upload-UUID"
|
|
DefaultMediaType = "application/json"
|
|
BinaryMediaType = "application/octet-stream"
|
|
DefaultMetricsExtensionRoute = "/metrics"
|
|
)
|