(a *App)
| 9 | type aboutModel struct{ app *App } |
| 10 | |
| 11 | func newAboutModel(a *App) aboutModel { return aboutModel{app: a} } |
| 12 | |
| 13 | func (m aboutModel) Init() tea.Cmd { return nil } |
| 14 | func (m aboutModel) Update(tea.Msg) (aboutModel, tea.Cmd) { return m, nil } |