From 3d33486d298ab5390dbaeffb25e2cae4e5e7a7a4 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 7 Apr 2015 11:16:08 -0700 Subject: [PATCH] command/delete --- commands.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/commands.go b/commands.go index 7694ce4304..b9daccfb0e 100644 --- a/commands.go +++ b/commands.go @@ -82,6 +82,12 @@ func init() { }, nil }, + "delete": func() (cli.Command, error) { + return &command.DeleteCommand{ + Meta: meta, + }, nil + }, + "revoke": func() (cli.Command, error) { return &command.RevokeCommand{ Meta: meta,