package tui import "git.tukangketik.id/swanadiva/hostkeeper/internal/models" // quitMsg signals the TUI to exit type quitMsg struct{} // openSessionMsg signals the TUI to open a new SSH session tab type openSessionMsg struct { host *models.Host dataDir string } // sessionOutputMsg carries SSH output to the TUI renderer type sessionOutputMsg string // sessionDoneMsg signals that a session has ended type sessionDoneMsg struct { err error }