| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- openapi: 3.0.0
- info:
- title: Flora Game API
- description: Small API game for the BTS
- version: 1.0.0
- servers:
- - url: http://192.168.131.172:3000
- paths:
- /register:
- post:
- summary: Make a new account
- responses:
- '200':
- description: OK
- /login:
- post:
- summary: Login to get your token
- responses:
- '200':
- description: OK
- /plant:
- post:
- summary: Spend $10 to plant something
- responses:
- '200':
- description: Gives you a code to remember
- /grow/{id}:
- post:
- summary: Type in the code you remembered
- responses:
- '200':
- description: OK
- /sell/{id}:
- post:
- summary: Sell the plant for money
- responses:
- '200':
- description: OK
|