Ver Fonte

feat(poster.go): post function to post a command

  Post("where", url.Values{"example": "Example"}) returning HTTP
response.
Apollo há 3 anos atrás
pai
commit
b91ca72bc3
2 ficheiros alterados com 18 adições e 0 exclusões
  1. 3 0
      go.mod
  2. 15 0
      poster.go

+ 3 - 0
go.mod

@@ -0,0 +1,3 @@
+module red-green/go-roku
+
+go 1.17

+ 15 - 0
poster.go

@@ -0,0 +1,15 @@
+package main
+
+import (
+	"log"
+	"net/http"
+	"net/url"
+)
+
+func Post(where string, data *url.Values) *http.Response {
+	resp, err := http.PostForm(where, *data)
+	if err != nil {
+		log.Fatalf("POST got non 200 code, %v", err)
+	}
+	return resp
+}