github.com/kotalco/kotal@v0.3.0/clients/interface.go (about)

     1  package clients
     2  
     3  import corev1 "k8s.io/api/core/v1"
     4  
     5  // Interface is client interface
     6  type Interface interface {
     7  	Args() []string
     8  	Command() []string
     9  	Env() []corev1.EnvVar
    10  	HomeDir() string
    11  }