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

9
cmd/kubens/current.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import "io"
type CurrentOp struct{}
func (c CurrentOp) Run(stdout, stderr io.Writer) error {
panic("implement me")
}