package tui import ( "bee/audit/internal/app" "bee/audit/internal/platform" ) type resultMsg struct { title string body string err error back screen } type servicesMsg struct { services []string err error } type interfacesMsg struct { ifaces []platform.InterfaceInfo err error } type exportTargetsMsg struct { targets []platform.RemovableTarget err error } type snapshotMsg struct { banner string panel app.HardwarePanelData } type nvtopClosedMsg struct{} type nvidiaSATDoneMsg struct { title string body string err error } type gpuStressDoneMsg struct { title string body string err error } type gpuLiveTickMsg struct { rows []platform.GPUMetricRow indices []int } type installDisksMsg struct { disks []platform.InstallDisk err error } type installDoneMsg struct { err error }