merge master

This commit is contained in:
Asim Aslam
2021-06-11 22:29:00 +01:00
19 changed files with 117 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ import (
"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() {
@@ -16,6 +17,9 @@ func main() {
// 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)