diff -r 912e72511084 -r 57843255fd1a printer/printer.go --- a/printer/printer.go Tue May 09 20:14:28 2017 +0200 +++ b/printer/printer.go Tue May 09 20:14:28 2017 +0200 @@ -13,6 +13,10 @@ // Options contains options used when creating a ResourcePrinter type Options map[string]string +type commonPrinter struct { + w io.Writer +} + // ResourcePrinter is an interface used to print objects. type ResourcePrinter interface { // PrintObj receives a runtime object, formats it and prints it to a writer.