diff options
Diffstat (limited to 'commands/account/recover.go')
-rw-r--r-- | commands/account/recover.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/account/recover.go b/commands/account/recover.go index a2170edd..f38d9920 100644 --- a/commands/account/recover.go +++ b/commands/account/recover.go @@ -20,7 +20,11 @@ type Recover struct { } func init() { - register(Recover{}) + commands.Register(Recover{}) +} + +func (Recover) Context() commands.CommandContext { + return commands.ACCOUNT } func (Recover) Aliases() []string { |