An open API service indexing awesome lists of open source software.

https://github.com/aerilym/mint-works-cloudflare-workers


https://github.com/aerilym/mint-works-cloudflare-workers

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Mint Works API

## POST /api/game

Body Example

```json
{
"players": [
{
"name": "Player 1",
"age": 21,
"tokens": 3
},
{
"name": "Player 2",
"age": 22,
"tokens": 3
}
]
}
```

## GET /api/game/:id

## PUT /api/game/:id

Body Example

```json
{
"turn": { "action": { "_type": "Produce" }, "playerName": "Player 2" }
}
```