Skip to content

Instantly share code, notes, and snippets.

@narenaryan
Last active March 25, 2024 00:27
Show Gist options
  • Save narenaryan/bec9661e685cfc6c8a43bf9f5ff2d120 to your computer and use it in GitHub Desktop.
Save narenaryan/bec9661e685cfc6c8a43bf9f5ff2d120 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
)
func main() {
resp, err := http.Get("https://httpbin.org/get")
if err != nil {
fmt.Println(err)
return
}
fmt.Println(resp.StatusCode)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment