Skip to content

Instantly share code, notes, and snippets.

@vincentbernat
Created April 18, 2017 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vincentbernat/6fa7467d3898e95ed577e50efdd5b0ac to your computer and use it in GitHub Desktop.
Save vincentbernat/6fa7467d3898e95ed577e50efdd5b0ac to your computer and use it in GitHub Desktop.
package main
import (
"net/http"
)
func main() {
_, err := http.Get("https://api.exoscale.ch/compute")
if err != nil {
panic(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment