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!
- Host: GitHub
- URL: https://github.com/omdxp/grpc-server
- Owner: omdxp
- Created: 2022-08-17T17:30:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-17T18:15:39.000Z (over 3 years ago)
- Last Synced: 2025-06-03T01:33:23.713Z (10 months ago)
- Topics: go, grpc, rust
- Language: Rust
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```