package api import ( "context" auth_util "github.com/caos/zitadel/internal/api/auth" grpc_util "github.com/caos/zitadel/internal/api/grpc" "github.com/caos/zitadel/internal/api/grpc/server" "github.com/caos/zitadel/internal/auth/repository" "github.com/caos/zitadel/pkg/auth/api/grpc" ) type Config struct { GRPC grpc_util.Config } func Start(ctx context.Context, conf Config, authZ auth_util.Config, repo repository.Repository) { grpcServer := grpc.StartServer(conf.GRPC.ToServerConfig(), authZ, repo) grpcGateway := grpc.StartGateway(conf.GRPC.ToGatewayConfig()) server.StartServer(ctx, grpcServer) server.StartGateway(ctx, grpcGateway) }