2020-03-18 14:46:41 +00:00
|
|
|
package management
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2020-03-25 06:58:58 +00:00
|
|
|
"github.com/caos/zitadel/internal/api/auth"
|
2020-03-18 14:46:41 +00:00
|
|
|
"github.com/caos/zitadel/internal/errors"
|
2020-03-25 06:58:58 +00:00
|
|
|
app "github.com/caos/zitadel/internal/management"
|
|
|
|
"github.com/caos/zitadel/pkg/management/api"
|
2020-03-18 14:46:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
2020-03-27 12:57:16 +00:00
|
|
|
App app.Config
|
|
|
|
API api.Config
|
2020-03-18 14:46:41 +00:00
|
|
|
}
|
|
|
|
|
2020-03-27 12:57:16 +00:00
|
|
|
func Start(ctx context.Context, config Config, authZ auth.Config) error {
|
2020-03-19 07:32:47 +00:00
|
|
|
return errors.ThrowUnimplemented(nil, "MANAG-h3k3x", "not implemented yet") //TODO: implement
|
2020-03-18 14:46:41 +00:00
|
|
|
}
|