DEV Community

Discussion on: Learn Golang by building a fintech banking app - Lesson1: Start the project

Collapse
 
fr3fou profile image
fr3fou

I'm against the HandleErr function, you really shouldn't be panic-ing on every error. Instead handle them gracefully

Collapse
 
duomly profile image
Duomly

Thanks, its a good point to create a separate topic about handling errors in nicer way :)