Please shut the hell up

This commit is contained in:
2025-12-14 17:22:31 +01:00
parent 65fa743cf8
commit 9a6481fb4d
10 changed files with 39 additions and 88 deletions

14
rpi/main.py Normal file
View File

@@ -0,0 +1,14 @@
from board_mate_client import ApiClient, Configuration
from board_mate_client.api.default_api import DefaultApi
from board_mate_client.models.game_dto import GameDto
if __name__ == "__main__":
config = Configuration(
host="https://192.168.15.160/"
)
with ApiClient(config) as client:
api = DefaultApi(client)
response = api.retrieve_games()
print(response)