Files
services/examples/function/describe/go/describeFunctionStatus.go

19 lines
347 B
Go
Executable File

package example
import (
"fmt"
"os"
"github.com/micro/services/clients/go/function"
)
//
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)
}