Files
filepass/internal/pages/home.go
2026-04-06 01:23:10 +09:00

17 lines
266 B
Go

package pages
type HomePageMsg struct{}
type MenuItem struct {
Label string
Key string
}
func HomeMenuItems() []MenuItem {
return []MenuItem{
{Label: "Select Server", Key: "server"},
{Label: "Config", Key: "config"},
{Label: "Exit", Key: "exit"},
}
}