35 lines
573 B
HTTP
35 lines
573 B
HTTP
GET http://localhost:8010/ping
|
|
###
|
|
|
|
# create new game
|
|
POST http://localhost:8010/game
|
|
|
|
{
|
|
"player_name": "Mirko"
|
|
}
|
|
###
|
|
|
|
# get game info
|
|
GET http://localhost:8010/game
|
|
###
|
|
|
|
# get player info
|
|
GET http://localhost:8010/player/test-player-id
|
|
###
|
|
|
|
# move player left
|
|
POST http://localhost:8010/player/test-player-id/move/left
|
|
###
|
|
|
|
# move player right
|
|
POST http://localhost:8010/player/test-player-id/move/right
|
|
###
|
|
|
|
# move player up
|
|
POST http://localhost:8010/player/test-player-id/move/up
|
|
###
|
|
|
|
# move player down
|
|
POST http://localhost:8010/player/test-player-id/move/down
|
|
###
|