An open API service indexing awesome lists of open source software.

https://github.com/omdxp/grpc-server

server with Rust, client with Go, all in gRPC!
https://github.com/omdxp/grpc-server

go grpc rust

Last synced: 8 months ago
JSON representation

server with Rust, client with Go, all in gRPC!

Awesome Lists containing this project

README

          

# gRPC with Rust server and Go client

Since gRPC is language agnostic, it is easy to write a server and client in multiple languages.

Here is a simple server written in Rust and a Go client.

The service is called `EchoService` and it returns the same message back to the client.

## run server

```sh
make server
```

## run client

```sh
make client
```