auth/internal/common/common.go

9 lines
282 B
Go
Raw Normal View History

2021-09-20 15:45:54 +00:00
package common
const (
MIMEApplicationJSON string = "application/json"
MIMEApplicationXWWWFormUrlencoded string = "application/x-www-form-urlencoded"
MIMETextHTML string = "text/html"
MIMETextPlain string = "text/plain"
2021-09-20 15:45:54 +00:00
)