Semaphore/util/App.go
2024-07-07 22:12:21 +05:00

10 lines
248 B
Go

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"`
}