mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-03 16:35:15 +00:00
20 lines
441 B
Go
20 lines
441 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
|
|
}
|