@@ -9,6 +9,8 @@ Started from scratch as a simple idea that you can run demoparty
from the CLI, as a network service or by pushing MIDI buttons and tuning
knobs.
+Central point of the service is...
+
Screenbar
---------
@@ -0,0 +1,15 @@
+package main
+import (
+ "log"
+ "net/http"
+)
+func put(url string) (resp *http.Response, err error) {
+ req, err := http.NewRequest("PUT", url, nil)
+ if err != nil {
+ log.Print(err)
+ return
+ }
+ return http.DefaultClient.Do(req)
+}