homebox/backend/pkgs/server/constants.go

9 lines
214 B
Go
Raw Normal View History

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