kubens: Start implementing stubs

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
Ahmet Alp Balkan
2020-04-18 13:09:59 -07:00
parent 342d21683b
commit 1982becb15
16 changed files with 239 additions and 30 deletions

11
cmd/kubens/switch.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"io"
)
type SwitchOp struct{ Target string }
func (s SwitchOp) Run(stdout, stderr io.Writer) error {
panic("implement me")
}