RoadSign/pkg/warden/manifest.go

14 lines
338 B
Go
Raw Permalink Normal View History

2024-01-17 06:34:08 +00:00
package warden
2024-01-24 16:09:39 +00:00
type Application struct {
ID string `json:"id" toml:"id"`
Workdir string `json:"workdir" toml:"workdir"`
Command []string `json:"command" toml:"command"`
Environment []string `json:"environment" toml:"environment"`
2024-01-17 06:34:08 +00:00
}
type ApplicationInfo struct {
Application
Status AppStatus `json:"status"`
}