Files
filepass/internal/pages/server_actions.go
2026-04-06 02:42:31 +09:00

13 lines
205 B
Go

package pages
type ServerActionsPageMsg struct {
ServerName string
}
func ServerActionItems() []MenuItem {
return []MenuItem{
{Label: "Send", Key: "send"},
{Label: "Clean All", Key: "clean"},
}
}