mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
13 lines
320 B
Go
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"`
|
|
}
|