Go's context.Background and TODO
In Go's context package, from the source code, context.Background and context.TODO both return the global Empty context.
This means, in your application you don't need to call ctx.TODO in every function, b/c it returns the same global todo context an...
hn.0xbf.me1 min read