AdGuardHome/internal/aghhttp/header.go

11 lines
245 B
Go
Raw Permalink Normal View History

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