Semaphore/util/App.go

13 lines
320 B
Go
Raw Normal View History

2024-07-07 19:12:21 +02:00
package util
type App struct {
Active bool `json:"active"`
2024-07-22 13:51:29 +02:00
Priority int `json:"priority"`
Title string `json:"title"`
Icon string `json:"icon"`
Color string `json:"color"`
DarkColor string `json:"dark_color"`
AppPath string `json:"path"`
AppArgs []string `json:"args"`
2024-07-07 19:12:21 +02:00
}