9 lines
195 B
Go
9 lines
195 B
Go
|
package httputil
|
||
|
|
||
|
const (
|
||
|
HeaderKeyContentType = "Content-Type"
|
||
|
|
||
|
HeaderValueApplicationJSON = "application/json"
|
||
|
HeaderValueApplicationURLEncoded = "application/x-www-form-urlencoded"
|
||
|
)
|