mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
e87fca28e7
* feat: check if zitadel project is changed * feat: check if zitadel project is changed
26 lines
875 B
Go
26 lines
875 B
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
authz_repo "github.com/caos/zitadel/internal/authz/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/config/systemdefaults"
|
|
"github.com/caos/zitadel/internal/management/repository"
|
|
|
|
grpc_util "github.com/caos/zitadel/internal/api/grpc"
|
|
"github.com/caos/zitadel/internal/api/grpc/server"
|
|
"github.com/caos/zitadel/pkg/management/api/grpc"
|
|
)
|
|
|
|
type Config struct {
|
|
GRPC grpc_util.Config
|
|
}
|
|
|
|
func Start(ctx context.Context, conf Config, authZRepo *authz_repo.EsRepository, authZ auth.Config, sd systemdefaults.SystemDefaults, repo repository.Repository) {
|
|
grpcServer := grpc.StartServer(conf.GRPC.ToServerConfig(), authZRepo, authZ, sd, repo)
|
|
grpcGateway := grpc.StartGateway(conf.GRPC.ToGatewayConfig())
|
|
|
|
server.StartServer(ctx, grpcServer)
|
|
server.StartGateway(ctx, grpcGateway)
|
|
}
|