Files
services/helloworld/main.go
2021-06-11 22:29:00 +01:00

28 lines
587 B
Go

package main
import (
"github.com/micro/micro/v3/service"
"github.com/micro/micro/v3/service/logger"
"github.com/micro/services/helloworld/handler"
pb "github.com/micro/services/helloworld/proto"
"github.com/micro/services/pkg/tracing"
)
func main() {
// Create service
srv := service.New(
service.Name("helloworld"),
)
// Register Handler
pb.RegisterHelloworldHandler(srv.Server(), new(handler.Helloworld))
traceCloser := tracing.SetupOpentracing("helloworld")
defer traceCloser.Close()
// Run the service
if err := srv.Run(); err != nil {
logger.Fatal(err)
}
}