diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-21T00·48+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-21T00·48+0000 |
commit | 86ff65a36ca9e9cc9aaa6b845eecb9c6c7fa488a (patch) | |
tree | 6c2a15659875d8b3e633ca7880e71d8dd6a9f530 /fun/quinistry/const.go | |
parent | 6e7262763ca7d0d94324477907161bd3907c9c1e (diff) |
chore(quinistry): Prepare for depot merge
Diffstat (limited to 'fun/quinistry/const.go')
-rw-r--r-- | fun/quinistry/const.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fun/quinistry/const.go b/fun/quinistry/const.go new file mode 100644 index 000000000000..173fa9efc390 --- /dev/null +++ b/fun/quinistry/const.go @@ -0,0 +1,12 @@ +package main + +// HTTP content types + +const ImageConfigMediaType string = "application/vnd.docker.container.image.v1+json" +const ManifestMediaType string = "application/vnd.docker.distribution.manifest.v2+json" +const LayerMediaType string = "application/vnd.docker.image.rootfs.diff.tar.gzip" + +// HTTP header names + +const ContentType string = "Content-Type" +const DigestHeader string = "Docker-Content-Digest" |