mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-13 14:33:40 +00:00
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
|
||
|
}
|