Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 607 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 607 Bytes

go-gRPC

This is a simple project focused on learning and improving with gRPC. It consists of a basic entity, Category, which is stored in an SQLite file database. Additionally, by using gRPC, it is possible to send operations to the gRPC server for saving and listing.

Genereate proto files

protoc --go_out=. --go-grpc_out=. proto/category.proto

Evans Client Execution

evans -r repl
package pb
service CategoryService
call {function}

Useful Links

  1. gRPC
  2. Proto Buf
  3. Evans Client