()
| 70 | } |
| 71 | |
| 72 | func (m authTabModel) fetchFiles() tea.Msg { |
| 73 | files, err := m.client.GetAuthFiles() |
| 74 | return authFilesMsg{files: files, err: err} |
| 75 | } |
| 76 | |
| 77 | func (m authTabModel) Update(msg tea.Msg) (authTabModel, tea.Cmd) { |
| 78 | switch msg := msg.(type) { |
nothing calls this directly
no test coverage detected