return nil, err
So much of my code is typically:
result, err := someFunc() if err != nil { return nil, err }
So much of my code is typically:
Most error conditions are basically unrecoverable anyway.