mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-02-03 00:38:40 +08:00
11 lines
298 B
Go
11 lines
298 B
Go
|
package header
|
||
|
|
||
|
const (
|
||
|
// ApplicationJson stands for application/json.
|
||
|
ApplicationJson = "application/json"
|
||
|
// ContentType is the header key for Content-Type.
|
||
|
ContentType = "Content-Type"
|
||
|
// JsonContentType is the content type for JSON.
|
||
|
JsonContentType = "application/json; charset=utf-8"
|
||
|
)
|