2021-12-04 18:02:05 +00:00
|
|
|
package scenes
|
|
|
|
|
|
|
|
import (
|
|
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
|
|
)
|
|
|
|
|
|
|
|
type updateProfileList struct{}
|
|
|
|
|
|
|
|
func updateProfileListCmd() tea.Msg {
|
|
|
|
return updateProfileList{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type updateProfileNames struct{}
|
|
|
|
|
|
|
|
func updateProfileNamesCmd() tea.Msg {
|
|
|
|
return updateProfileNames{}
|
|
|
|
}
|
2022-04-14 01:27:39 +00:00
|
|
|
|
|
|
|
type updateInstallationList struct{}
|
|
|
|
|
|
|
|
func updateInstallationListCmd() tea.Msg {
|
|
|
|
return updateInstallationList{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type updateInstallationNames struct{}
|
|
|
|
|
|
|
|
func updateInstallationNamesCmd() tea.Msg {
|
|
|
|
return updateInstallationNames{}
|
|
|
|
}
|