@@ -6,22 +6,23 @@ const (
66
77// Mime Type values for the Content-Type HTTP header
88const (
9- ApplicationJSON string = "application/json" + charsetUTF8
10- ApplicationJavaScript string = "application/javascript"
11- ApplicationXML string = "application/xml" + charsetUTF8
12- ApplicationForm string = "application/x-www-form-urlencoded"
13- ApplicationProtobuf string = "application/protobuf"
14- ApplicationMsgpack string = "application/msgpack"
15- ApplicationWasm string = "application/wasm"
16- ApplicationPDF string = "application/pdf"
17- TextHTML string = "text/html" + charsetUTF8
18- TextPlain string = "text/plain" + charsetUTF8
19- TextMarkdown string = "text/markdown" + charsetUTF8
20- TextCSS string = "text/css" + charsetUTF8
21- ImagePNG string = "image/png"
22- ImageGIF string = "image/gif"
23- ImageSVG string = "image/svg+xml"
24- ImageJPEG string = "image/jpeg"
25- MultipartForm string = "multipart/form-data"
26- OctetStream string = "application/octet-stream"
9+ ApplicationJSON string = "application/json" + charsetUTF8
10+ ApplicationJavaScript string = "application/javascript"
11+ ApplicationXML string = "application/xml" + charsetUTF8
12+ ApplicationForm string = "application/x-www-form-urlencoded"
13+ ApplicationProtobuf string = "application/protobuf"
14+ ApplicationMsgpack string = "application/msgpack"
15+ ApplicationWasm string = "application/wasm"
16+ ApplicationPDF string = "application/pdf"
17+ ApplicationOctetStream string = "application/octet-stream"
18+ TextHTML string = "text/html" + charsetUTF8
19+ TextPlain string = "text/plain" + charsetUTF8
20+ TextMarkdown string = "text/markdown" + charsetUTF8
21+ TextCSS string = "text/css" + charsetUTF8
22+ TextCSV string = "text/csv"
23+ ImagePNG string = "image/png"
24+ ImageGIF string = "image/gif"
25+ ImageSVG string = "image/svg+xml"
26+ ImageJPEG string = "image/jpeg"
27+ MultipartForm string = "multipart/form-data"
2728)
0 commit comments