2022-09-29 17:04:26 +01:00
|
|
|
package aghhttp
|
|
|
|
|
2023-04-07 12:21:37 +01:00
|
|
|
// HTTP headers
|
2022-09-29 17:04:26 +01:00
|
|
|
|
|
|
|
// HTTP header value constants.
|
|
|
|
const (
|
2023-08-30 16:57:36 +01:00
|
|
|
HdrValApplicationJSON = "application/json"
|
|
|
|
HdrValStrictTransportSecurity = "max-age=31536000; includeSubDomains"
|
|
|
|
HdrValTextPlain = "text/plain"
|
2022-09-29 17:04:26 +01:00
|
|
|
)
|