headers.go 298 B

12345678910
  1. package header
  2. const (
  3. // ApplicationJson stands for application/json.
  4. ApplicationJson = "application/json"
  5. // ContentType is the header key for Content-Type.
  6. ContentType = "Content-Type"
  7. // JsonContentType is the content type for JSON.
  8. JsonContentType = "application/json; charset=utf-8"
  9. )