diff options
Diffstat (limited to 'http.go')
| -rw-r--r-- | http.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -102,7 +102,9 @@ func okHandler(w http.ResponseWriter, r *http.Request) { result, err := Start(hostname) if err == nil { fmt.Fprintln(w, result) - fmt.Fprintln(w, hostname, "started ok") + fmt.Fprintln(w, hostname, "started output ok") + fmt.Fprintln(w, hostname, "need to parse the output here") + fmt.Fprintln(w, hostname, "todo: switch to protobuf here") } else { fmt.Fprintln(w, result) fmt.Fprintln(w, err) |
