(p []byte)
| 408 | } |
| 409 | |
| 410 | func (w *ProxyWriter) Write(p []byte) (int, error) { |
| 411 | // ... do something with bytes first |
| 412 | fmt.Fprintf(w.file, "%s", string(p)) |
| 413 | return len(p), nil |
| 414 | } |
| 415 | |
| 416 | func (k *KubernetesUtil) ExecKubectlCommandRealtime(command string, dirctory string, isLoop bool) error { |
| 417 | var execCommand *exec.Cmd |
no outgoing calls
no test coverage detected