Cosmos-Server/src/user/me.go
2023-03-12 18:17:28 +00:00

17 lines
322 B
Go

package user
import (
"net/http"
"../utils"
)
func Me(w http.ResponseWriter, req *http.Request) {
if (req.Method == "GET") {
UserGet(w, req)
} else {
utils.Error("UserRoute: Method not allowed" + req.Method, nil)
utils.HTTPError(w, "Method not allowed", http.StatusMethodNotAllowed, "HTTP001")
return
}
}