mirror of
https://github.com/dnote/dnote
synced 2026-03-16 07:25:49 +01:00
10 lines
344 B
Go
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"
|
|
)
|