update error handlers

This commit is contained in:
Hayden 2022-08-30 16:40:27 -08:00
parent 93a4a816f9
commit 9501eb398a
4 changed files with 25 additions and 16 deletions

View file

@ -1,7 +1,8 @@
package server
const (
ContentType = "Content-Type"
ContentJSON = "application/json"
ContentXML = "application/xml"
ContentType = "Content-Type"
ContentJSON = "application/json"
ContentXML = "application/xml"
ContentFormUrlEncoded = "application/x-www-form-urlencoded"
)