| 15 | ) |
| 16 | |
| 17 | type SettingsSection interface { |
| 18 | Init() tea.Cmd |
| 19 | Update(tea.Msg) (SettingsSection, tea.Cmd) |
| 20 | View() string |
| 21 | Title() string |
| 22 | StatusLine() string |
| 23 | } |
| 24 | |
| 25 | type SettingsSectionSubmitMsg struct { |
| 26 | Settings docker.ApplicationSettings |