Context Background & TODO
context.Background()context.TODO()package main
import(
"context"
"fmt"
)
func main() {
background := context.Background()
fmt.Println(background)
todo := context.TODO()
fmt.Println(todo)
}context.Background
context.TODOLast updated