(Translated by https://www.hiragana.jp/)
GitHub - fatih/twirpdemo: An example repository of using the Twirp RPC framework with Go
Skip to content

An example repository of using the Twirp RPC framework with Go

License

Notifications You must be signed in to change notification settings

fatih/twirpdemo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

twirpdemo

This repo was created for a local meetup to show some of the features of the Twirp RPC framework.

Usage

Generate proto code:

protoc  --twirp_out=. --go_out=. proto/rpc.proto

Run the calculator service:

$ go run cmd/calculatorsvc/main.go
2021/11/19 13:13:43 server started at port 8080

Make a request using curl:

$ curl \
  --request "POST" \
  --header 'Content-Type:application/json' \
  --data '{"a": 10, "b": 5}' \
  http://localhost:8080/twirp/Calculator/Add

{"result":15}⏎

Make a request using generated Go client:

$ go run cmd/calculatorctl/main.go
Result = 15

About

An example repository of using the Twirp RPC framework with Go

Topics

Resources

License

Stars

Watchers

Forks

Languages