placed REST api behind /api/v0/

This commit is contained in:
Stephen McQuay 2015-08-26 22:18:48 -07:00
parent af926d7f3a
commit b5cac7c02a
1 changed files with 6 additions and 6 deletions

View File

@ -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
} }