fix: 修正触发服务器地址为s1

This commit is contained in:
2025-10-27 17:18:46 +08:00
parent d10b985e43
commit b0b8dc9b8f
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import uuid
import time
class ImageClient:
def __init__(self, server_address="tcp://:54321", client_id=None):
def __init__(self, server_address="tcp://s1.brisky.space:7701", client_id=None):
self.server_address = server_address
self.client_id = client_id or f"client_{uuid.uuid4().hex[:8]}"
self.socket = None