Files
services/examples/function/describe/go/describeFunctionStatus.go
2021-10-14 10:29:18 +01:00

18 lines
346 B
Go
Executable File

package example
import (
"fmt"
"github.com/micro/services/clients/go/function"
"os"
)
//
func DescribeFunctionStatus() {
functionService := function.NewFunctionService(os.Getenv("MICRO_API_TOKEN"))
rsp, err := functionService.Describe(&function.DescribeRequest{
Name: "my-first-func",
Project: "tests",
})
fmt.Println(rsp, err)
}