1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-23 17:53:05 +02:00

23 lines
404 B
Markdown
Raw Normal View History

2020-12-26 15:17:20 +00:00
# Function
This is an example of creating a micro function. A function is a one time executing service.
## Contents
- main.go - is the main definition of the function
- proto - contains the protobuf definition of the API
## Run function
```shell
while true; do
2020-12-26 15:21:29 +00:00
github.com/micro/go-micro/examples/function
2020-12-26 15:17:20 +00:00
done
```
## Call function
```shell
micro call greeter Greeter.Hello '{"name": "john"}'
```