Clean out examples not used on the site

This commit is contained in:
Mark McGranaghan
2016-12-27 12:51:36 -08:00
parent a3b3bff8cb
commit b36fbd2a0e
23 changed files with 0 additions and 578 deletions

View File

@@ -1,15 +0,0 @@
package main
import "net/http"
import "io/ioutil"
import "fmt"
func main() {
resp, err := http.Get("http://127.0.0.1:5000/")
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
fmt.Print(string(body))
}