Skip to content

Instantly share code, notes, and snippets.

@mr-pascal
Created February 25, 2021 05:51
Show Gist options
  • Save mr-pascal/796c806b01f6225563a2c26c2328b2c9 to your computer and use it in GitHub Desktop.
Save mr-pascal/796c806b01f6225563a2c26c2328b2c9 to your computer and use it in GitHub Desktop.
func checkError(message string, err error) {
// Error Logging
if err != nil {
log.Fatal(message, err)
}
}
type Person struct {
Firstname string
Lastname string
Country string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment