freego_api/README.md

17 lines
315 B
Markdown
Raw Normal View History

2022-03-03 13:28:00 -05:00
# freego_api
freego implementation as a simple REST API.
Currently stores no state and has no user authentication, so using it should just be
2022-03-03 13:30:52 -05:00
```
2022-03-03 13:28:00 -05:00
go build
./freego_api
2022-03-03 13:30:52 -05:00
```
# Implemented routes
```
POST /game
GET /game/{id}
GET /game/{id}/status
2022-03-07 15:21:59 -05:00
POST /game/{id}/move
GET /game/{id}/move/{movenum}
2022-03-03 13:30:52 -05:00
```