Semaphore/util/App.go
2024-07-22 16:51:29 +05:00

13 lines
320 B
Go

package util
type App struct {
Active bool `json:"active"`
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"`
}