28 lines
348 B
Go
28 lines
348 B
Go
package tui
|
|
|
|
type step int
|
|
|
|
const (
|
|
// Docker Validation
|
|
StepCheckDocker step = iota
|
|
StepDockerInstall
|
|
|
|
// Image Fetching
|
|
StepDockerLogin
|
|
StepDownloadImage
|
|
|
|
// IP Stuff
|
|
StepIPQuestion
|
|
StepInstallWireguard
|
|
|
|
// Docker Config
|
|
StepServerConfig
|
|
StepDatabaseConfig
|
|
StepCertConfig
|
|
|
|
// Finalizing
|
|
StepGenerateFile
|
|
StepRunDocker
|
|
StepDone
|
|
)
|