home/internal/common/common.go

14 lines
276 B
Go

package common
const (
HeaderAcceptLanguage string = "Accept-Language"
HeaderContentType string = "Content-Type"
)
const (
MIMETextHTML = "text/html"
MIMETextHTMLCharsetUTF8 = MIMETextHTML + "; " + charsetUTF8
)
const charsetUTF8 string = "charset=UTF-8"