-
Notifications
You must be signed in to change notification settings - Fork 707
Closed
Labels
Description
https://github.com/search?q=repo%3Alima-vm%2Flima%20context.TODO&type=code
A context.Context
should be passed as a function argument
e.g.,
func Foo(){
ctx := context.TODO()
...
}
↓
func Foo(ctx context.Context) {
...
}