🎨 Explicitly set types for common strings

This commit is contained in:
Maxim Lebedev 2023-12-20 07:20:54 +06:00
parent 79eb5fcd5c
commit 2ec9567c24
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 24 additions and 23 deletions

View File

@ -1,34 +1,35 @@
package common
const (
MIMEApplicationForm = "application/x-www-form-urlencoded"
MIMEApplicationFormCharsetUTF8 = MIMEApplicationForm + "; " + charsetUTF8
MIMETextHTML = "text/html"
MIMETextHTMLCharsetUTF8 = MIMETextHTML + "; " + charsetUTF8
MIMETextPlain = "text/plain"
MIMETextPlainCharsetUTF8 = MIMETextPlain + "; " + charsetUTF8
charsetUTF8 = "charset=UTF-8"
MIMEApplicationForm string = "application/x-www-form-urlencoded"
MIMEApplicationFormCharsetUTF8 string = MIMEApplicationForm + "; " + charsetUTF8
MIMETextHTML string = "text/html"
MIMETextHTMLCharsetUTF8 string = MIMETextHTML + "; " + charsetUTF8
MIMETextPlain string = "text/plain"
MIMETextPlainCharsetUTF8 string = MIMETextPlain + "; " + charsetUTF8
)
const (
HeaderContentType = "Content-Type"
HeaderLink = "Link"
HeaderXHubSignature = "X-Hub-Signature"
HeaderAcceptLanguage = "Accept-Language"
HeaderAcceptLanguage string = "Accept-Language"
HeaderContentType string = "Content-Type"
HeaderLink string = "Link"
HeaderXHubSignature string = "X-Hub-Signature"
)
const (
HubCallback = hub + ".callback"
HubChallenge = hub + ".challenge"
HubLeaseSeconds = hub + ".lease_seconds"
HubMode = hub + ".mode"
HubReason = hub + ".reason"
HubSecret = hub + ".secret"
HubTopic = hub + ".topic"
HubURL = hub + ".url"
hub = "hub"
HubCallback string = hub + ".callback"
HubChallenge string = hub + ".challenge"
HubLeaseSeconds string = hub + ".lease_seconds"
HubMode string = hub + ".mode"
HubReason string = hub + ".reason"
HubSecret string = hub + ".secret"
HubTopic string = hub + ".topic"
HubURL string = hub + ".url"
)
const Und = "und"
const Und string = "und"
const (
hub string = "hub"
charsetUTF8 string = "charset=UTF-8"
)