mirror of
https://github.com/go-micro/go-micro.git
synced 2025-03-17 20:28:06 +02:00
23 lines
406 B
Markdown
23 lines
406 B
Markdown
# 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
|
|
github.com/asim/go-micro/examples/v3/function
|
|
done
|
|
```
|
|
|
|
## Call function
|
|
|
|
```shell
|
|
micro call greeter Greeter.Hello '{"name": "john"}'
|
|
```
|