replace timezone with time

This commit is contained in:
Asim Aslam
2021-06-21 19:42:12 +01:00
parent f920ed4558
commit 9f1e0f3778
19 changed files with 812 additions and 550 deletions

24
time/main.go Normal file
View File

@@ -0,0 +1,24 @@
package main
import (
"github.com/micro/micro/v3/service"
"github.com/micro/micro/v3/service/logger"
"github.com/micro/services/time/handler"
pb "github.com/micro/services/time/proto"
)
func main() {
// Create service
srv := service.New(
service.Name("time"),
service.Version("latest"),
)
// Register handler
pb.RegisterTimeHandler(srv.Server(), handler.New())
// Run service
if err := srv.Run(); err != nil {
logger.Fatal(err)
}
}