Skip to content

Instantly share code, notes, and snippets.

@DorukUlucay
Created March 8, 2020 20:26
Show Gist options
  • Save DorukUlucay/6b9cd3b489d6969b670f8d81d7363f0c to your computer and use it in GitHub Desktop.
Save DorukUlucay/6b9cd3b489d6969b670f8d81d7363f0c to your computer and use it in GitHub Desktop.
Golang notes

go lang notes

//array of struct declaration with value
type Api struct {
Url string
Name string
}
var apis = []Api{
Api{
Url: "https://api.ipify.org",
Name: "My IP", // comma needs to stay
}, // this comma needs to stay too
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment