Cosmos-Server/src/configapi/route.go

18 lines
396 B
Go
Raw Normal View History

2023-03-16 18:56:36 +00:00
package configapi
import (
"net/http"
"../utils"
)
func ConfigRoute(w http.ResponseWriter, req *http.Request) {
if(req.Method == "GET") {
ConfigApiGet(w, req)
} else if (req.Method == "PUT") {
ConfigApiSet(w, req)
} else {
utils.Error("UserRoute: Method not allowed" + req.Method, nil)
utils.HTTPError(w, "Method not allowed", http.StatusMethodNotAllowed, "HTTP001")
return
}
}