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