Function是只响应一次请求的服务,我们现在介绍如何使用Function。
使用protoc生成相应的代码
protoc --go_out=. --micro_out=. proto/greeter.proto
Mac/Linux
watch -n1 go run main.go
Windows(Powershell)
while (1) {go run main.go; sleep 1}
micro call greeter Greeter.Hello '{"name": "Micro中国"}'