10 lines
158 B
Go
10 lines
158 B
Go
package aghhttp
|
|
|
|
// HTTP headers
|
|
|
|
// HTTP header value constants.
|
|
const (
|
|
HdrValApplicationJSON = "application/json"
|
|
HdrValTextPlain = "text/plain"
|
|
)
|