ESP32 now publishes on broker

This commit is contained in:
2025-12-27 17:45:08 +01:00
parent 0ec10f765d
commit 19ad13843c
217 changed files with 5166 additions and 26 deletions

View File

@@ -0,0 +1,52 @@
# coding: utf-8
"""
boardmate_api API
boardmate_api API
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from board_mate_client.api.default_api import DefaultApi
class TestDefaultApi(unittest.TestCase):
"""DefaultApi unit chesscog-bck stubs"""
def setUp(self) -> None:
self.api = DefaultApi()
def tearDown(self) -> None:
pass
def test_add_move(self) -> None:
"""Test case for add_move
POST moves/add/{gameId}
"""
pass
def test_create_party(self) -> None:
"""Test case for create_party
POST create
"""
pass
def test_retrieve_games(self) -> None:
"""Test case for retrieve_games
GET games/{id}
"""
pass
if __name__ == '__main__':
unittest.main()