dnote/pkg/server/consts/consts.go
Sung Won Cho 01a378c5b1
Simplify by removing web interface (#590)
* Implement MVC

* Implement settings

* Improve layout

* Lock sass dependency
2022-04-24 10:54:39 +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"
)