Changes to ProcessConfiguration

This commit is contained in:
Matthew Penner
2020-08-04 21:41:09 -06:00
parent eb975e0cbd
commit 9bd10f1043
2 changed files with 37 additions and 15 deletions

View File

@@ -31,10 +31,9 @@ type ServerConfigurationResponse struct {
// and what changes to make to the configuration file for a server.
type ProcessConfiguration struct {
Startup struct {
Done string `json:"done"`
UserInteraction []string `json:"userInteraction"`
SplitCharacter string `json:"splitCharacter"`
StripAnsi bool `json:"stripAnsi"`
Done []string `json:"done"`
UserInteraction []string `json:"user_interaction"`
StripAnsi bool `json:"strip_ansi"`
} `json:"startup"`
Stop struct {