2023-11-15 08:20:30 +00:00
|
|
|
import grpc
|
2023-11-18 15:08:22 +00:00
|
|
|
import proto.documents_pb2_grpc
|
|
|
|
import proto.documents_pb2
|
2023-11-15 08:20:30 +00:00
|
|
|
|
2023-11-18 15:08:22 +00:00
|
|
|
print("正在连接到 Library Server...")
|
2023-11-15 08:20:30 +00:00
|
|
|
channel = grpc.insecure_channel('localhost:8081')
|
|
|
|
|
2023-11-18 15:08:22 +00:00
|
|
|
stub = proto.documents_pb2_grpc.DocumentSearchServiceStub(channel)
|