@aditiitwt If nobody sees or care about your backend work. You're doing it right. I shouldn't be made aware that there's a possiblity my system crashes at 3AM
@VladimirAtHQ @bidhanxcode Lol.
You return the error as value like you would return a string or an int from a function
So
func someShit() returns (err)
When calling someShit(), if it spawns a critically error, you gotta check it
err := someShit()
if err != nil {
// handle the error
}
Everytime btw