Skip to content

Instantly share code, notes, and snippets.

@luismoramedina
Created July 22, 2016 21:58
Show Gist options
  • Save luismoramedina/b8201478a1d00862a5f93beb904556ab to your computer and use it in GitHub Desktop.
Save luismoramedina/b8201478a1d00862a5f93beb904556ab to your computer and use it in GitHub Desktop.
http connection in go
package main
import "fmt"
import "net/http"
func main() {
resp, error := http.Get("https://www.google.com/")
fmt.Println(resp)
fmt.Println(error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment