31 lines
415 B
Go
31 lines
415 B
Go
package tui
|
|
|
|
type step int
|
|
|
|
const (
|
|
// Docker Validation
|
|
StepCheckDocker step = iota
|
|
StepDockerInstall
|
|
|
|
// Image Fetching
|
|
StepDockerLogin
|
|
StepDownloadImage
|
|
|
|
// IP Stuff
|
|
StepIPQuestion
|
|
StepWireguardConfig
|
|
StepGenerateWireguardFile
|
|
StepDownloadWireguard
|
|
StepRunWireguard
|
|
|
|
// Docker Config
|
|
StepServerConfig
|
|
StepDatabaseConfig
|
|
StepCertConfig
|
|
|
|
// Finalizing
|
|
StepGenerateFile
|
|
StepRunDocker
|
|
StepDone
|
|
)
|