mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-04 12:07:13 +08:00
Put SystemVerify request struct above response
This commit is contained in:
parent
f6743743fa
commit
16b73c7130
@ -519,15 +519,15 @@ func handleUpdateAll(w http.ResponseWriter, r *http.Request) {
|
|||||||
w.WriteHeader(http.StatusOK)
|
w.WriteHeader(http.StatusOK)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type SystemVerifyRequest struct {
|
||||||
|
ClientSessionId string `json:"clientSessionId"`
|
||||||
|
}
|
||||||
|
|
||||||
type SystemVerifyResponse struct {
|
type SystemVerifyResponse struct {
|
||||||
Valid bool `json:"valid"`
|
Valid bool `json:"valid"`
|
||||||
SystemData *defs.SystemSaveData `json:"systemData"`
|
SystemData *defs.SystemSaveData `json:"systemData"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type SystemVerifyRequest struct {
|
|
||||||
ClientSessionId string `json:"clientSessionId"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleSystemVerify(w http.ResponseWriter, r *http.Request) {
|
func handleSystemVerify(w http.ResponseWriter, r *http.Request) {
|
||||||
uuid, err := uuidFromRequest(r)
|
uuid, err := uuidFromRequest(r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user