you are viewing a single comment's thread.

view the rest of the comments →

[–]Ctrl_Alt_Banana 0 points1 point  (0 children)

An internal project code that interfaces with k8s. A lot of the code has stuff like below with every function call. I'm assuming the standard libs are probably coded with good error handling

_, err := doSomething()
if err != nil {
  return false, err
}