fix: reformat code

This commit is contained in:
Gu1llaum-3 2025-09-02 09:21:00 +02:00
parent 01f2b4e6be
commit 1d50e7cb47
2 changed files with 20 additions and 20 deletions

View File

@ -57,17 +57,17 @@ func (s SortMode) String() string {
}
type Model struct {
table table.Model
searchInput textinput.Model
hosts []config.SSHHost
filteredHosts []config.SSHHost
searchMode bool
deleteMode bool
deleteHost string
exitAction string
exitHostName string
historyManager *history.HistoryManager
sortMode SortMode
table table.Model
searchInput textinput.Model
hosts []config.SSHHost
filteredHosts []config.SSHHost
searchMode bool
deleteMode bool
deleteHost string
exitAction string
exitHostName string
historyManager *history.HistoryManager
sortMode SortMode
}
func (m Model) Init() tea.Cmd {