placed REST api behind /api/v0/

Cette révision appartient à :
Stephen McQuay 2015-08-26 22:18:48 -07:00
Parent af926d7f3a
révision b5cac7c02a
1 fichiers modifiés avec 6 ajouts et 6 suppressions

Voir le fichier

@ -56,12 +56,12 @@ func NewController(conf Config, mprof, pprof string) *http.ServeMux {
sm := http.NewServeMux()
sm.Handle("/", JsonHandler(c.Index))
sm.Handle("/ws/", websocket.Handler(c.AddPlayer))
sm.Handle("/game/start/", JsonHandler(c.StartGame))
sm.Handle("/game/list/", JsonHandler(c.ListGames))
sm.Handle("/game/stats/", JsonHandler(c.GameStats))
sm.Handle("/game/bw/", JsonHandler(c.BW))
sm.Handle("/game/stop/", JsonHandler(c.StopGame))
sm.HandleFunc("/fuck/shit/up/", c.KillServer)
sm.Handle("/api/v0/game/start/", JsonHandler(c.StartGame))
sm.Handle("/api/v0/game/list/", JsonHandler(c.ListGames))
sm.Handle("/api/v0/game/stats/", JsonHandler(c.GameStats))
sm.Handle("/api/v0/game/bw/", JsonHandler(c.BW))
sm.Handle("/api/v0/game/stop/", JsonHandler(c.StopGame))
sm.HandleFunc("/api/v0/fsu/", c.KillServer)
return sm
}