Add timestamp at game creation

This commit is contained in:
2026-01-05 16:17:33 +01:00
parent d6984ccf93
commit 6ac4e1610f
3 changed files with 6 additions and 3 deletions

View File

@@ -38,6 +38,7 @@ class GameController:
black_name = data["black_name"]
time_control = int(data["time_control"])
increment = int(data["increment"])
timestamp = int(data["timestamp"])
self._game_service.start(white_name, black_name, time_control, increment)
self._has_started = True