aboutsummaryrefslogtreecommitdiff
path: root/commands/msg/msg.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msg/msg.go')
-rw-r--r--commands/msg/msg.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/commands/msg/msg.go b/commands/msg/msg.go
new file mode 100644
index 0000000..73755aa
--- /dev/null
+++ b/commands/msg/msg.go
@@ -0,0 +1,16 @@
+package msg
+
+import (
+ "git.sr.ht/~sircmpwn/aerc/commands"
+)
+
+var (
+ MessageCommands *commands.Commands
+)
+
+func register(name string, cmd commands.AercCommand) {
+ if MessageCommands == nil {
+ MessageCommands = commands.NewCommands()
+ }
+ MessageCommands.Register(name, cmd)
+}