First Look at Go Context -- (From Draft)
Go Context
use context to gather additional information about the environment they're being executed in.
lets get into it :)
package main
import "context"
import "fmt"
func doSomething(ctx context.Context){
fmt.Println("Doing something", ctx)...
shrijantripathi.com.np7 min read