homebox/backend/pkgs/server/constants.go

9 lines
214 B
Go
Raw Normal View History

2022-08-29 18:30:36 -08:00
package server
const (
2022-08-30 16:40:27 -08:00
ContentType = "Content-Type"
ContentJSON = "application/json"
ContentXML = "application/xml"
ContentFormUrlEncoded = "application/x-www-form-urlencoded"
2022-08-29 18:30:36 -08:00
)