This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# P2P Network Communication - Client Module
"""
客户端模块,运行在Windows系统上
提供用户界面和P2P通信功能
__version__ = "0.1.0"
from client.connection_manager import (
ConnectionManager,
ConnectionState,
ConnectionError,
ReconnectionError,
Connection,
StateChangeCallback,
MessageReceivedCallback,
)
from client.file_transfer import (
FileTransferModule,
FileTransferError,
FileNotFoundError,
FileIntegrityError,
TransferCancelledError,
TransferState,
ProgressCallback,