Files
services/function/main.go
Asim Aslam 855fd8f72a replace db with store in function (#318)
* replace db with store in function

* .

* set id properly

* .
2021-12-10 15:51:34 +00:00

25 lines
478 B
Go

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"
)
func main() {
// Create service
srv := service.New(
service.Name("function"),
service.Version("latest"),
)
// Register handler
pb.RegisterFunctionHandler(srv.Server(), handler.NewFunction())
// Run service
if err := srv.Run(); err != nil {
logger.Fatal(err)
}
}