This commit is contained in:
2026-08-05 18:17:25 +08:00
parent 61796dfa9f
commit b52cee9e39
34 changed files with 866 additions and 309 deletions
+3 -2
View File
@@ -47,11 +47,12 @@ src/py_srv/
├── py_srv/
│ ├── add_two_ints_server.py # 服务端(a + b = sum)
│ └── add_two_ints_client.py # 客户端
├── launch/service_launch.py # 一键启动 server + client
├── launch/srv_launch.py # 一键启动 server + client
├── test/
│ ├── conftest.py
│ ├── test_srv_server.py # 服务端单元测试
│ ├── test_srv_client.py # 客户端单元测试
│ └── test_srv.py # 端到端测试
│ └── test_srv_roundtrip.py # 端到端测试
└── setup.py
```