- Fix issue #94

- Fix linter
- Remove useless code/deadcode
This commit is contained in:
Nicolas JUHEL
2021-04-13 13:08:49 +02:00
parent 499b5ee613
commit dbb443eb65
48 changed files with 673 additions and 1418 deletions

View File

@@ -27,6 +27,7 @@ package context
import "context"
func IsolateParent(parent context.Context) context.Context {
//nolint #govet
x, _ := context.WithCancel(parent)
return x
}