Skip to content

Instantly share code, notes, and snippets.

@cep21
Created July 1, 2016 16:01
Show Gist options
  • Save cep21/cfb16ed4bf96abc71e641020121ca735 to your computer and use it in GitHub Desktop.
Save cep21/cfb16ed4bf96abc71e641020121ca735 to your computer and use it in GitHub Desktop.
Example supporting default empty struct
const DefaultBaseURL = "http://api.smitegame.com/"
func (c *Client) urlBase() string {
if c.BaseURL == "" {
return DefaultBaseURL
}
return c.BaseURL
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment