ficsit-cli-flake/tea/scenes/profile/messages.go
2023-06-15 10:50:10 +02:00

17 lines
277 B
Go

package profile
import (
tea "github.com/charmbracelet/bubbletea"
)
type updateProfileList struct{}
func updateProfileListCmd() tea.Msg {
return updateProfileList{}
}
type updateProfileNames struct{}
func updateProfileNamesCmd() tea.Msg {
return updateProfileNames{}
}