4330728215
This is just something that's been bugging me for a while--they're specific to Lint and Upgrade, so that's where they belong.
14 lines
195 B
Go
14 lines
195 B
Go
package run
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// Config contains configuration applicable to all helm commands
|
|
type Config struct {
|
|
Debug bool
|
|
Namespace string
|
|
Stdout io.Writer
|
|
Stderr io.Writer
|
|
}
|