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