"...git@git.doit.wisc.edu:SABERG3/course-search-enroll-fe.git" did not exist on "2270ef1f30cbeb94f0a25d1d0435cdd29c2efd7a"
Newer
Older
import grpc
import math_pb2_grpc, math_pb2
channel = grpc.insecure_channel("localhost:5440")
stub = math_pb2_grpc.CalcStub(channel)
resp = stub.Mult(math_pb2.MultReq(x=3, y=4))
print(resp.result)