initial commit

This commit is contained in:
2025-02-28 17:40:39 +05:30
parent 796e995b2b
commit c39726c098
9 changed files with 141 additions and 0 deletions

8
client/callSpec.py Normal file
View File

@@ -0,0 +1,8 @@
from typing import Any, Dict
import pydantic
class CallPacket(pydantic.BaseModel):
procedure: str
simpleObjects: Dict[str, Any] = {}
byteObjects: Dict[str, bytes] = {}