1
0
mirror of https://github.com/labstack/echo.git synced 2025-03-19 21:17:58 +02:00

Fixed type in charset=utf-8

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana 2015-07-12 08:37:40 -07:00
parent c4357ca80b
commit cb5eb336b1

View File

@ -95,8 +95,8 @@ const (
ApplicationForm = "application/x-www-form-urlencoded"
ApplicationProtobuf = "application/protobuf"
ApplicationMsgpack = "application/msgpack"
TextHTML = "text/html ;charset=utf-8"
TextPlain = "text/plain ;charset=utf-8"
TextHTML = "text/html; charset=utf-8"
TextPlain = "text/plain; charset=utf-8"
MultipartForm = "multipart/form-data"
//---------