mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-06 14:42:26 +00:00
fix: add grpc server and gateway
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
package grpc
|
||||
|
||||
import (
|
||||
grpc_utils "github.com/caos/zitadel/internal/api/grpc"
|
||||
grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware"
|
||||
"google.golang.org/grpc"
|
||||
)
|
||||
|
||||
@@ -28,7 +30,13 @@ func (s *Server) GRPCPort() string {
|
||||
}
|
||||
|
||||
func (s *Server) GRPCServer() (*grpc.Server, error) {
|
||||
gs := grpc.NewServer()
|
||||
gs := grpc.NewServer(
|
||||
grpc.UnaryInterceptor(
|
||||
grpc_middleware.ChainUnaryServer(
|
||||
grpc_utils.ErrorHandler(),
|
||||
),
|
||||
),
|
||||
)
|
||||
RegisterManagementServiceServer(gs, s)
|
||||
return gs, nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user