package
1.1.0
Repository: https://github.com/xuyiwenak/bamboorat.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

RPC API

This is an example of using an RPC based API

Getting Started

Run Micro API

micro api

Run Greeter Service

go run greeter/srv/main.go

Run Greeter API

go run rpc.go

Curl API

curl -H 'Content-Type: application/json' -d '{"name": "Asim"}' http://localhost:8080/greeter/hello

Output

{
  "msg": "Hello Asim"
}