🎨 Formatted exists MIME type common strings

This commit is contained in:
Maxim Lebedev 2023-11-08 04:32:07 +06:00
parent e446c3c205
commit 30ddd71e40
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ const (
)
const (
MIMETextHTML = "text/html"
MIMETextHTMLCharsetUTF8 = MIMETextHTML + "; " + charsetUTF8
MIMETextHTML string = "text/html"
MIMETextHTMLCharsetUTF8 string = MIMETextHTML + "; " + charsetUTF8
)
const charsetUTF8 string = "charset=UTF-8"