ship event service

This commit is contained in:
Asim Aslam
2021-11-02 13:26:46 +00:00
parent cb18c7051b
commit 2dbc66ebd7
13 changed files with 780 additions and 0 deletions

24
event/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/event/handler"
pb "github.com/micro/services/event/proto"
)
func main() {
// Create service
srv := service.New(
service.Name("event"),
service.Version("latest"),
)
// Register handler
pb.RegisterEventHandler(srv.Server(), new(handler.Event))
// Run service
if err := srv.Run(); err != nil {
logger.Fatal(err)
}
}