mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
3e1204524e
* fix: multiple setup steps * fix: test set up started * fix: possible nil pointers in setup * fix: validate executed step
15 lines
202 B
Go
15 lines
202 B
Go
package setup
|
|
|
|
import (
|
|
"context"
|
|
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
)
|
|
|
|
type step interface {
|
|
step() iam_model.Step
|
|
execute(context.Context) error
|
|
init(*Setup)
|
|
isNil() bool
|
|
}
|