Semaphore/util/App.go

13 lines
323 B
Go
Raw Normal View History

2024-07-07 19:12:21 +02:00
package util
type AppConfig struct {
Active bool `json:"active"`
Order int `json:"order"`
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
}