()
| 10 | ) |
| 11 | |
| 12 | func loadAvailableFiles(cfg config.Config) tea.Cmd { |
| 13 | return func() tea.Msg { |
| 14 | files, err := git.GetAvailableFiles() |
| 15 | if err != nil { |
| 16 | return availableFilesMsg{err: err} |
| 17 | } |
| 18 |
nothing calls this directly
no test coverage detected