aboutsummaryrefslogtreecommitdiff
path: root/commands/msg/archive.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msg/archive.go')
-rw-r--r--commands/msg/archive.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/msg/archive.go b/commands/msg/archive.go
index 63d6de0..6bf231d 100644
--- a/commands/msg/archive.go
+++ b/commands/msg/archive.go
@@ -24,15 +24,15 @@ func init() {
register(Archive{})
}
-func (_ Archive) Aliases() []string {
+func (Archive) Aliases() []string {
return []string{"archive"}
}
-func (_ Archive) Complete(aerc *widgets.Aerc, args []string) []string {
+func (Archive) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
-func (_ Archive) Execute(aerc *widgets.Aerc, args []string) error {
+func (Archive) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) != 2 {
return errors.New("Usage: archive <flat|year|month>")
}