placed REST api behind /api/v0/
This commit is contained in:
parent
af926d7f3a
commit
b5cac7c02a
12
control.go
12
control.go
@ -56,12 +56,12 @@ func NewController(conf Config, mprof, pprof string) *http.ServeMux {
|
|||||||
sm := http.NewServeMux()
|
sm := http.NewServeMux()
|
||||||
sm.Handle("/", JsonHandler(c.Index))
|
sm.Handle("/", JsonHandler(c.Index))
|
||||||
sm.Handle("/ws/", websocket.Handler(c.AddPlayer))
|
sm.Handle("/ws/", websocket.Handler(c.AddPlayer))
|
||||||
sm.Handle("/game/start/", JsonHandler(c.StartGame))
|
sm.Handle("/api/v0/game/start/", JsonHandler(c.StartGame))
|
||||||
sm.Handle("/game/list/", JsonHandler(c.ListGames))
|
sm.Handle("/api/v0/game/list/", JsonHandler(c.ListGames))
|
||||||
sm.Handle("/game/stats/", JsonHandler(c.GameStats))
|
sm.Handle("/api/v0/game/stats/", JsonHandler(c.GameStats))
|
||||||
sm.Handle("/game/bw/", JsonHandler(c.BW))
|
sm.Handle("/api/v0/game/bw/", JsonHandler(c.BW))
|
||||||
sm.Handle("/game/stop/", JsonHandler(c.StopGame))
|
sm.Handle("/api/v0/game/stop/", JsonHandler(c.StopGame))
|
||||||
sm.HandleFunc("/fuck/shit/up/", c.KillServer)
|
sm.HandleFunc("/api/v0/fsu/", c.KillServer)
|
||||||
|
|
||||||
return sm
|
return sm
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user