1
0
mirror of https://github.com/taigrr/wasm-experiments synced 2025-01-18 04:03:21 -08:00

gRPC: Use grpc-wasm as client package

This commit is contained in:
Johan Brandhorst
2018-06-04 22:51:10 +01:00
parent e48ef08afd
commit 2392bc267d
19 changed files with 672 additions and 270 deletions

View File

@@ -38,3 +38,7 @@ func (b Backend) GetUser(ctx context.Context, req *server.GetUserRequest) (*serv
Id: req.GetUserId(),
}, nil
}
func (b Backend) GetUsers(req *server.GetUsersRequest, srv server.Backend_GetUsersServer) error {
return nil
}