Postman the notifier

This commit is contained in:
2024-07-21 13:51:46 +08:00
parent 037fc8a18c
commit d74cdddbaf
22 changed files with 1361 additions and 195 deletions

View File

@ -16,6 +16,7 @@ import (
type Server struct {
proto.UnimplementedServiceDirectoryServer
proto.UnimplementedStreamControllerServer
proto.UnimplementedPostmanServer
proto.UnimplementedAuthServer
srv *grpc.Server
@ -29,6 +30,7 @@ func NewServer() *Server {
proto.RegisterServiceDirectoryServer(server.srv, server)
proto.RegisterStreamControllerServer(server.srv, server)
proto.RegisterAuthServer(server.srv, server)
proto.RegisterPostmanServer(server.srv, server)
health.RegisterHealthServer(server.srv, server)
reflection.Register(server.srv)