Files
tetri5/tetris/backend.py
2021-06-29 06:18:33 +00:00

8 lines
282 B
Python

from signalrcore.hub_connection_builder import HubConnectionBuilder
server_url = "https://tetriscloneapp.azurewebsites.net/player"
hub_connection = HubConnectionBuilder()\
.with_url(server_url)\
.build()
hub_connection.send("EnterGame", ["abc123"], lambda m: print(m))