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