mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
6556d053b2
* feat: translate error messages in error interceptor * fix: add statik import * feat: user error msgs * feat: add translations * feat: add translations * feat: add translations * feat: add translations * feat: add translations * feat: add translations * some fixes and improved error messages Co-authored-by: Livio Amstutz <livio.a@gmail.com>
26 lines
877 B
Go
26 lines
877 B
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
authz_repo "github.com/caos/zitadel/internal/authz/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/config/systemdefaults"
|
|
|
|
"github.com/caos/zitadel/internal/admin/repository"
|
|
"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/pkg/admin/api/grpc"
|
|
)
|
|
|
|
type Config struct {
|
|
GRPC grpc_util.Config
|
|
}
|
|
|
|
func Start(ctx context.Context, conf Config, authZRepo *authz_repo.EsRepository, authZ auth.Config, defaults systemdefaults.SystemDefaults, repo repository.Repository) {
|
|
grpcServer := grpc.StartServer(conf.GRPC.ToServerConfig(), authZRepo, authZ, repo)
|
|
grpcGateway := grpc.StartGateway(conf.GRPC.ToGatewayConfig())
|
|
|
|
server.StartServer(ctx, grpcServer, defaults)
|
|
server.StartGateway(ctx, grpcGateway)
|
|
}
|