We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81aea92 commit 8ba66c1Copy full SHA for 8ba66c1
2 files changed
.vscode/settings.json
@@ -15,6 +15,7 @@
15
"jsonpass",
16
"jsonpretty",
17
"jsonptr",
18
+ "JSONUTF",
19
"Kbps",
20
"Localef",
21
"Mbps",
constant.go
@@ -273,6 +273,10 @@ const (
273
// Example: "application/json"
274
MediaTypeApplicationJSON = "application/json"
275
276
+ // ApplicationJSONUTF8 specifies that the content is JSON-formatted data with UTF-8 character encoding.
277
+ // Example: "application/json; charset=utf-8"
278
+ MediaTypeApplicationJSONUTF8 = "application/json; charset=utf-8"
279
+
280
// ApplicationXML specifies that the content is XML-formatted data.
281
// Example: "application/xml"
282
MediaTypeApplicationXML = "application/xml"
0 commit comments