Files
services/holidays/main.go
2021-09-21 18:51:19 +01:00

26 lines
471 B
Go

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