summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-02-06 22:41:19 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2022-02-06 22:41:19 +0200
commita401431df444d5e1f8c4367226969ca7930b1991 (patch)
tree127b4f12da65471dc47271eec016467e42a04f53
parent954244171108b039ce3e472e8eb09355c792af8d (diff)
Make runner respond with just a string
-rw-r--r--index.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/index.ts b/index.ts
index 2c162c1..3fd07e6 100644
--- a/index.ts
+++ b/index.ts
@@ -7,9 +7,6 @@ export namespace RunnerApiSubmitRequest {
export namespace RunnerApiSubmitResponse {
export interface Body {
- result: {
- stdout: string
- stderr: string
- }
+ result: string
}
}