feat: NCS-53 changed IO to MicroService for easier scaling (#37)

Reviewed-on: #37
Reviewed-by: Shahd Lala <shosho996@blackhole.local>
This commit is contained in:
2026-04-21 15:38:58 +02:00
parent 74a4fce0ca
commit b5a2966ada
53 changed files with 772 additions and 31 deletions
+24
View File
@@ -0,0 +1,24 @@
meta {
name: Import FEN
type: http
seq: 1
}
http {
method: POST
url: {{baseUrl}}/api/board/game/import/fen
body: json
auth: none
}
headers {
Content-Type: application/json
}
body:json {
{
"fen": "rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1",
"white": {"id": "p1", "displayName": "Alice"},
"black": {"id": "p2", "displayName": "Bob"}
}
}