🎨 Added 'text/plain' encoding constants

This commit is contained in:
Maxim Lebedev 2024-02-03 20:46:30 +06:00
parent 677ae81a33
commit e18e265d1a
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 4 additions and 2 deletions

View File

@ -7,8 +7,10 @@ const (
)
const (
MIMETextHTML string = "text/html"
MIMETextHTMLCharsetUTF8 string = MIMETextHTML + "; " + charsetUTF8
MIMETextHTML string = "text/html"
MIMETextHTMLCharsetUTF8 string = MIMETextHTML + "; " + charsetUTF8
MIMETextPlain string = "text/plain"
MIMETextPlainCharsetUTF8 string = MIMETextPlain + "; " + charsetUTF8
)
const Und string = "und"