juno
juno copied to clipboard
Effective Error Handling
We should follow a common pattern for error handling in the different parts of the project.
By default, Golang offers an API for that purpose using fmt.Errof and then using errors.Wrap, we should take advantage.
And example of how to use a proper error handling, you can check this post about Efective Error Handling