diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-03-21 16:30:23 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-03-21 16:30:23 -0400 |
commit | 8126d82956636a2525263e2d0d985d721fdb8074 (patch) | |
tree | 2c5f5c2e2fb2e5ecfb4c12eb8ef6bc575edc39f8 /commands/account/account.go | |
parent | fe79a9a5879936a7f5b16cc6a8be1d93ec1bfae7 (diff) | |
download | aerc-8126d82956636a2525263e2d0d985d721fdb8074.zip |
Add context-specific commands
Diffstat (limited to 'commands/account/account.go')
-rw-r--r-- | commands/account/account.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/commands/account/account.go b/commands/account/account.go new file mode 100644 index 0000000..918d962 --- /dev/null +++ b/commands/account/account.go @@ -0,0 +1,16 @@ +package account + +import ( + "git.sr.ht/~sircmpwn/aerc2/commands" +) + +var ( + AccountCommands *commands.Commands +) + +func register(name string, cmd commands.AercCommand) { + if AccountCommands == nil { + AccountCommands = commands.NewCommands() + } + AccountCommands.Register(name, cmd) +} |