Files
services/function/main.go
2021-10-11 11:54:53 +01:00

27 lines
555 B
Go

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