Semaphore/util/App.go

10 lines
248 B
Go
Raw Normal View History

2024-07-07 19:12:21 +02:00
package util
type AppConfig struct {
Title string `json:"title"`
Icon string `json:"icon"`
Active bool `json:"active"`
AppPath string `json:"path"`
AppArgs map[string]string `json:"args"`
}