mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-24 08:02:32 +02:00
.. | ||
cli | ||
rpccli | ||
srv | ||
README.md |
http server and http client demo
An example http application
Contents
- srv - a http server as server of go-mirco service
- cli - a http client that call http server
- rpcli - a http client that call rpc server
Run Service
Start http server
go run srv/main.go
Client
Call http client
go run cli/main.go
Run rpc Service
Start greeter service
go run ../greeter/srv/main.go
Client
http client call rpc service
go run rpccli/main.go