mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-17 01:51:30 +00:00
20 lines
445 B
Go
20 lines
445 B
Go
package admin
|
|
|
|
import (
|
|
"context"
|
|
|
|
app "github.com/caos/zitadel/internal/admin"
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/pkg/admin/api"
|
|
)
|
|
|
|
type Config struct {
|
|
App *app.Config
|
|
API *api.Config
|
|
}
|
|
|
|
func Start(ctx context.Context, config *Config, authZ *auth.Config) error {
|
|
return errors.ThrowUnimplemented(nil, "ADMIN-n8vw5", "not implemented yet") //TODO: implement
|
|
}
|