2020-03-18 15:46:41 +01:00
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2020-03-25 07:58:58 +01:00
|
|
|
app "github.com/caos/zitadel/internal/admin"
|
|
|
|
"github.com/caos/zitadel/internal/api/auth"
|
2020-03-18 15:46:41 +01:00
|
|
|
"github.com/caos/zitadel/internal/errors"
|
2020-03-25 07:58:58 +01:00
|
|
|
"github.com/caos/zitadel/pkg/admin/api"
|
2020-03-18 15:46:41 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
2020-03-25 07:58:58 +01:00
|
|
|
App *app.Config
|
|
|
|
API *api.Config
|
2020-03-18 15:46:41 +01:00
|
|
|
}
|
|
|
|
|
2020-03-25 07:58:58 +01:00
|
|
|
func Start(ctx context.Context, config *Config, authZ *auth.Config) error {
|
2020-03-19 08:32:47 +01:00
|
|
|
return errors.ThrowUnimplemented(nil, "ADMIN-n8vw5", "not implemented yet") //TODO: implement
|
2020-03-18 15:46:41 +01:00
|
|
|
}
|