summaryrefslogtreecommitdiff
path: root/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'http.go')
-rw-r--r--http.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/http.go b/http.go
index 629b973..937f9a7 100644
--- a/http.go
+++ b/http.go
@@ -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)