WithValue returns a copy of parent in which the value associated with key is val.
(parent context.Context, key interface{}, val interface{})
| 72 | |
| 73 | // WithValue returns a copy of parent in which the value associated with key is val. |
| 74 | func WithValue(parent context.Context, key interface{}, val interface{}) context.Context { |
| 75 | return context.WithValue(parent, key, val) |
| 76 | } |
| 77 | |
| 78 | // WithName returns a copy of parent in which the devspace name value is set |
| 79 | func WithName(parent context.Context, name string) context.Context { |
no outgoing calls
no test coverage detected