mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-17 01:19:29 +08:00
15 lines
177 B
Go
15 lines
177 B
Go
package menu
|
|
|
|
type TrayType string
|
|
|
|
const (
|
|
TrayIcon TrayType = "icon"
|
|
TrayLabel TrayType = "label"
|
|
)
|
|
|
|
type TrayOptions struct {
|
|
Type TrayType
|
|
Label string
|
|
Menu *Menu
|
|
}
|