Set game stopping

This commit is contained in:
2026-01-04 20:49:07 +01:00
parent b2ce505c27
commit 4cafef729a
2 changed files with 6 additions and 3 deletions

View File

@@ -42,6 +42,9 @@ class GameController:
print(ex)
return jsonify({"status": "error", "message": f"An error occurred : {ex}"}), 500
def stop_game(self):
self._game_service.stop()
def make_move(self):
try:
auth_token = request.headers.get("Authorization")