chore: sync

This commit is contained in:
2026-02-09 00:05:29 +01:00
parent 0301716890
commit 6bfa3d4dda
23 changed files with 622 additions and 18 deletions

18
docs/wiki/blueprints.md Normal file
View File

@@ -0,0 +1,18 @@
## Blueprints Module
### Module Description
Defines and manages construction blueprints for planetary structures and facilities.
### API Endpoints
- **GET /blueprints**
- *Purpose:* Retrieve list of available blueprints
- *Auth:* Required (JWT token)
- *Payload:* None
- *Response:* `{"blueprints": [{"id": "int", "name": "string", "resource_cost": {"ore": "int", "crystal": "int"}}]}`
- **GET /blueprints/{id}**
- *Purpose:* Retrieve detailed blueprint information
- *Auth:* Required (JWT token)
- *Payload:* None
- *Response:* `{"id": "int", "name": "string", "description": "string", "resource_cost": {"ore": "int", "crystal": "int"}}`