From ef290faa884abb0cc4ecdfc9fd1ab21174295bb8 Mon Sep 17 00:00:00 2001 From: Matt Bell Date: Tue, 28 Oct 2014 22:13:43 -0700 Subject: [PATCH] commands: Added a Type field for defining output struct formats --- commands/command.go | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/command.go b/commands/command.go index 85646541f..cee08307f 100644 --- a/commands/command.go +++ b/commands/command.go @@ -26,6 +26,7 @@ type Command struct { Options []Option Run Function Format Formatter + Type interface{} Subcommands map[string]*Command }