From bb6beaba44db2f4e23160c8f17aa615866cbc0f9 Mon Sep 17 00:00:00 2001 From: Maxim Lebedev Date: Mon, 2 Jan 2023 06:11:17 +0600 Subject: [PATCH] :label: Added ContentType header name constant --- internal/common/common.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/common/common.go b/internal/common/common.go index 9285563..a14817a 100644 --- a/internal/common/common.go +++ b/internal/common/common.go @@ -12,4 +12,8 @@ const ( MIMETextPlainCharsetUTF8 string = MIMETextPlain + "; " + charsetUTF8 ) +const ( + HeaderContentType string = "Content-Type" +) + const Und string = "und"