local-server/pkg/mime/mime.go

14 lines
324 B
Go
Raw Normal View History

2019-02-04 04:06:02 +00:00
package mime
const (
2023-02-13 16:24:28 +00:00
JSON = "application/json"
2020-04-22 15:36:04 +00:00
YAML = "text/vnd.yaml"
TAR = "application/tar"
DISK = "application/x-diskimage"
ISO = "application/x-iso9660-image"
IPXE = "text/x-ipxe"
OCTET = "application/octet-stream"
CERT = "application/x-x509-user-cert"
CACERT = "application/x-x509-ca-cert"
2019-02-04 04:06:02 +00:00
)