🏷️ Added more HTTP Headers constants

This commit is contained in:
Maxim Lebedev 2023-01-11 20:46:46 +06:00
parent bf41a38014
commit d815e79c55
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 12 additions and 2 deletions

View File

@ -13,8 +13,18 @@ const (
)
const (
HeaderContentType string = "Content-Type"
HeaderAuthorization string = "Authorization"
HeaderAccept string = "Accept"
HeaderAcceptLanguage string = "Accept-Language"
HeaderAccessControlAllowOrigin string = "Access-Control-Allow-Origin"
HeaderAuthorization string = "Authorization"
HeaderContentType string = "Content-Type"
HeaderCookie string = "Cookie"
HeaderHost string = "Host"
HeaderLink string = "Link"
HeaderLocation string = "Location"
HeaderVary string = "Vary"
HeaderWWWAuthenticate string = "WWW-Authenticate"
HeaderXCSRFToken string = "X-CSRF-Token"
)
const Und string = "und"