1
0
mirror of https://github.com/docker/cli.git synced 2026-01-06 05:41:44 +03:00

appcontext: remove unused parts

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2023-07-20 16:44:32 +02:00
parent febb37a38e
commit 112d79a413
2 changed files with 0 additions and 18 deletions

View File

@@ -25,10 +25,6 @@ func Context() context.Context {
retries := 0
ctx := context.Background()
for _, f := range inits {
ctx = f(ctx)
}
ctx, cancel := context.WithCancel(ctx)
appContextCache = ctx

View File

@@ -1,14 +0,0 @@
package appcontext
import (
"context"
)
type Initializer func(context.Context) context.Context
var inits []Initializer
// Register stores a new context initializer that runs on app context creation
func Register(f Initializer) {
inits = append(inits, f)
}