WithName returns a copy of parent in which the devspace name value is set
(parent context.Context, name string)
| 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 { |
| 80 | return WithValue(parent, nameKey, name) |
| 81 | } |
| 82 | |
| 83 | // NameFrom returns the name of the devspace config |
| 84 | func NameFrom(ctx context.Context) (string, bool) { |
no test coverage detected