9 lines
258 B
Go
9 lines
258 B
Go
package warden
|
|
|
|
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"`
|
|
}
|