diff options
Diffstat (limited to 'commands/msgview/msgview.go')
-rw-r--r-- | commands/msgview/msgview.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/commands/msgview/msgview.go b/commands/msgview/msgview.go new file mode 100644 index 0000000..e3db828 --- /dev/null +++ b/commands/msgview/msgview.go @@ -0,0 +1,16 @@ +package msgview + +import ( + "git.sr.ht/~sircmpwn/aerc2/commands" +) + +var ( + MessageViewCommands *commands.Commands +) + +func register(name string, cmd commands.AercCommand) { + if MessageViewCommands == nil { + MessageViewCommands = commands.NewCommands() + } + MessageViewCommands.Register(name, cmd) +} |