mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
61d16e4621
* add setup steps * refactoring * omitempty * cleanup * fixes
18 lines
219 B
Go
18 lines
219 B
Go
package domain
|
|
|
|
type Step int
|
|
|
|
const (
|
|
Step1 Step = iota + 1
|
|
Step2
|
|
Step3
|
|
Step4
|
|
Step5
|
|
Step6
|
|
Step7
|
|
Step8
|
|
Step9
|
|
//StepCount marks the the length of possible steps (StepCount-1 == last possible step)
|
|
StepCount
|
|
)
|