13 lines
205 B
Go
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"},
|
|
}
|
|
}
|