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>
25 lines
790 B
Go
25 lines
790 B
Go
package admin
|
|
|
|
import (
|
|
"context"
|
|
authz_repo "github.com/caos/zitadel/internal/authz/repository/eventsourcing"
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/admin/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
"github.com/caos/zitadel/pkg/admin/api"
|
|
)
|
|
|
|
type Config struct {
|
|
Repository eventsourcing.Config
|
|
API api.Config
|
|
}
|
|
|
|
func Start(ctx context.Context, config Config, authZRepo *authz_repo.EsRepository, authZ auth.Config, systemDefaults sd.SystemDefaults) {
|
|
repo, err := eventsourcing.Start(ctx, config.Repository, systemDefaults)
|
|
logging.Log("MAIN-9uBxp").OnError(err).Panic("unable to start app")
|
|
|
|
api.Start(ctx, config.API, authZRepo, authZ, systemDefaults, repo)
|
|
}
|