AdGuardHome/internal/aghhttp/header.go

11 lines
245 B
Go
Raw Permalink Normal View History

2022-09-29 17:10:03 +01:00
package aghhttp
2023-04-12 12:48:42 +01:00
// HTTP headers
2022-09-29 17:10:03 +01:00
// HTTP header value constants.
const (
2023-09-07 15:13:48 +01:00
HdrValApplicationJSON = "application/json"
HdrValStrictTransportSecurity = "max-age=31536000; includeSubDomains"
HdrValTextPlain = "text/plain"
2022-09-29 17:10:03 +01:00
)