From 460387fc3bb5cfba389a3347e44405e8584eb5b0 Mon Sep 17 00:00:00 2001 From: Matt Bell Date: Thu, 30 Oct 2014 20:33:32 -0700 Subject: [PATCH] commands: Added 'Private' field to Command --- commands/command.go | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/command.go b/commands/command.go index 0521d0baf..f88e3b206 100644 --- a/commands/command.go +++ b/commands/command.go @@ -28,6 +28,7 @@ type Command struct { Format Formatter Type interface{} Subcommands map[string]*Command + Private bool } // ErrNotCallable signals a command that cannot be called.