()
| 38 | // sectionView is the interface every top-level section must implement. |
| 39 | type sectionView interface { |
| 40 | // Init returns the command to run when this section becomes active. |
| 41 | Init() tea.Cmd |
| 42 | |
| 43 | // Update handles messages relevant to this section. |
no outgoing calls