mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-25 22:45:46 +03:00
10 lines
245 B
Go
10 lines
245 B
Go
package aghhttp
|
|
|
|
// HTTP headers
|
|
|
|
// HTTP header value constants.
|
|
const (
|
|
HdrValApplicationJSON = "application/json"
|
|
HdrValStrictTransportSecurity = "max-age=31536000; includeSubDomains"
|
|
HdrValTextPlain = "text/plain"
|
|
)
|