summaryrefslogtreecommitdiff
path: root/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'http.go')
-rw-r--r--http.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/http.go b/http.go
index 141082c..85bdbb0 100644
--- a/http.go
+++ b/http.go
@@ -46,6 +46,12 @@ func okHandler(w http.ResponseWriter, r *http.Request) {
return
}
+ if tmp == "/start" {
+ start := r.URL.Query().Get("start")
+ fmt.Fprint(w,"Handling URL:", tmp, "should start here: droplet", start)
+ return
+ }
+
if tmp == "/favicon.ico" {
writeFile(w, "ipv6.png")
return