dnote/pkg/server/consts/consts.go
2022-04-17 10:47:43 +10:00

10 lines
344 B
Go

package consts
const (
// ContentTypeForm is the content type header for form encoded data
ContentTypeForm = "application/x-www-form-urlencoded"
// ContentTypeForm is the content type header for JSON encoded data
ContentTypeJSON = "application/json"
// ContentTypeHTML is the content type header for HTML
ContentTypeHTML = "text/html"
)