Skip to content

Instantly share code, notes, and snippets.

@mkock
Last active October 2, 2021 20:53
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 mkock/68eb8bf96675ff0bf97dfc0283e8bd91 to your computer and use it in GitHub Desktop.
Save mkock/68eb8bf96675ff0bf97dfc0283e8bd91 to your computer and use it in GitHub Desktop.
maybeUser, err := repo.LoadUser(42) // Returns interface{}, error
if err != nil { ... }
user, ok := maybeUser.(*User) // Ugly conversion
if !ok { ... }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment