mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-16 04:48:04 +00:00
23 lines
658 B
Go
23 lines
658 B
Go
package management
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
"github.com/caos/zitadel/internal/management/repository/eventsourcing"
|
|
"github.com/caos/zitadel/pkg/management/api"
|
|
)
|
|
|
|
type Config struct {
|
|
Repository eventsourcing.Config
|
|
API api.Config
|
|
}
|
|
|
|
func Start(ctx context.Context, config Config, authZ auth.Config, systemDefaults sd.SystemDefaults) {
|
|
repo, err := eventsourcing.Start(config.Repository, systemDefaults)
|
|
logging.Log("MAIN-9uBxp").OnError(err).Panic("unable to start app")
|
|
|
|
api.Start(ctx, config.API, authZ, repo)
|
|
}
|