package main import ( "github.com/micro/micro/v3/service" "github.com/micro/micro/v3/service/logger" "github.com/micro/services/function/handler" pb "github.com/micro/services/function/proto" admin "github.com/micro/services/pkg/service/proto" ) func main() { // Create service srv := service.New( service.Name("function"), service.Version("latest"), ) h := handler.NewFunction() // Register handler pb.RegisterFunctionHandler(srv.Server(), h) admin.RegisterAdminHandler(srv.Server(), h) // Run service if err := srv.Run(); err != nil { logger.Fatal(err) } }