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