2023-01-16 22:48:14 +00:00
|
|
|
package profile
|
2021-12-04 18:02:05 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
|
|
)
|
|
|
|
|
|
|
|
type updateProfileList struct{}
|
|
|
|
|
|
|
|
func updateProfileListCmd() tea.Msg {
|
|
|
|
return updateProfileList{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type updateProfileNames struct{}
|
|
|
|
|
|
|
|
func updateProfileNamesCmd() tea.Msg {
|
|
|
|
return updateProfileNames{}
|
|
|
|
}
|