diff options
Diffstat (limited to 'commands/account/compose.go')
-rw-r--r-- | commands/account/compose.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/account/compose.go b/commands/account/compose.go index fe86a179..e45f77c3 100644 --- a/commands/account/compose.go +++ b/commands/account/compose.go @@ -24,7 +24,11 @@ type Compose struct { } func init() { - register(Compose{}) + commands.Register(Compose{}) +} + +func (Compose) Context() commands.CommandContext { + return commands.ACCOUNT } func (c *Compose) ParseHeader(arg string) error { |