Footer encapsulates the application footer.
| 12 | |
| 13 | // Footer encapsulates the application footer. |
| 14 | type Footer struct { |
| 15 | *tview.TextView |
| 16 | |
| 17 | vncSessionCount int |
| 18 | autoRefreshActive bool |
| 19 | selectedGuests int |
| 20 | baseText string |
| 21 | refreshCountdown int // seconds until next auto-refresh |
| 22 | isLoading bool |
| 23 | spinnerIndex int |
| 24 | } |
| 25 | |
| 26 | var _ FooterComponent = (*Footer)(nil) |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected