- 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"
- // FormUrlEncodedType is the content type for Form Url Encoded
- FormUrlEncodedType = "application/x-www-form-urlencoded"
- // FormDataType is the content type for Form-Data
- FormDataType = "multipart/form-data"
- )
|