diff options
Diffstat (limited to 'worker/models.go')
| -rw-r--r-- | worker/models.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/worker/models.go b/worker/models.go index b838fe0..a7310bd 100644 --- a/worker/models.go +++ b/worker/models.go @@ -33,7 +33,7 @@ func (req *swiftCompileRequestData) validate() error { } type swiftCompileResponseData struct { - Result string `json:"result"` + Status string `json:"status"` Stdout string `json:"stdout"` Stderr string `json:"stderr"` } @@ -44,7 +44,7 @@ type wasmCompileRequestData struct { } type wasmCompileResponseData struct { - Result string `json:"result"` + Status string `json:"status"` Stdout string `json:"stdout"` Stderr string `json:"stderr"` } @@ -78,7 +78,7 @@ func (req *testRunRequestData) validate() error { } type testRunResponseData struct { - Result string `json:"result"` + Status string `json:"status"` Stdout string `json:"stdout"` Stderr string `json:"stderr"` } |
