19 lines
210 B
Go
19 lines
210 B
Go
package tui
|
|
|
|
type step int
|
|
|
|
const (
|
|
StepCheckDocker step = iota
|
|
StepDockerInstall
|
|
StepDownloadImage
|
|
|
|
StepIPQuestion
|
|
StepInstallWireguard
|
|
|
|
StepServerConfig
|
|
StepDatabaseConfig
|
|
StepCertConfig
|
|
|
|
StepDone
|
|
)
|