17 lines
276 B
Go
17 lines
276 B
Go
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{}
|
|
}
|