Files
services/url/main.go
2022-03-01 16:41:31 +00:00

31 lines
678 B
Go

package main
import (
admin "github.com/micro/services/pkg/service/proto"
"github.com/micro/services/pkg/tracing"
"github.com/micro/services/url/handler"
pb "github.com/micro/services/url/proto"
"github.com/micro/micro/v3/service"
"github.com/micro/micro/v3/service/logger"
)
func main() {
// Create service
srv := service.New(
service.Name("url"),
service.Version("latest"),
)
h := handler.NewUrl(srv)
// Register handler
pb.RegisterUrlHandler(srv.Server(), h)
admin.RegisterAdminHandler(srv.Server(), h)
traceCloser := tracing.SetupOpentracing("url")
defer traceCloser.Close()
// Run service
if err := srv.Run(); err != nil {
logger.Fatal(err)
}
}