Skip to content

Instantly share code, notes, and snippets.

@jcdan3
Created January 15, 2022 18:32
Show Gist options
  • Save jcdan3/b0718853797b61222d5f136004b66748 to your computer and use it in GitHub Desktop.
Save jcdan3/b0718853797b61222d5f136004b66748 to your computer and use it in GitHub Desktop.
print public holidays http payload
func printPayload(){
url := "https://date.nager.at/api/v2/publicholidays/2020/US"
data,_ := http.Get(url)
payload,_ := ioutil.ReadAll(data.Body)
fmt.Println(string(payload))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment