feat: add Client class #3

Merged
pufereq merged 15 commits from feat/add-client-class into develop 2025-09-23 11:36:37 +00:00
5 changed files with 100 additions and 20 deletions
Showing only changes of commit 7ce32855c4 - Show all commits

View File

@@ -3,7 +3,7 @@ from __future__ import annotations
import logging as lg
from judas_client.connector import Connector
from judas_client import Client
if __name__ == "__main__":
lg.basicConfig(
@@ -12,5 +12,5 @@ if __name__ == "__main__":
)
logger = lg.getLogger(__name__)
connector = Connector("127.0.0.1", 3692)
connector.run()
client = Client(server_host="localhost", server_port=3692)
client.run()