Files
expanded-dms/internal/tui/states.go
2025-11-12 23:59:00 +11:00

24 lines
441 B
Go

package tui
type ApplicationState int
const (
StateWelcome ApplicationState = iota
StateSelectWindowManager
StateSelectTerminal
StateMissingWMInstructions
StateDetectingDeps
StateDependencyReview
StateGentooUseFlags
StateGentooGCCCheck
StateAuthMethodChoice
StateFingerprintAuth
StatePasswordPrompt
StateInstallingPackages
StateConfigConfirmation
StateDeployingConfigs
StateInstallComplete
StateFinalComplete
StateError
)