aboutsummaryrefslogtreecommitdiff
path: root/commands/new-account.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/new-account.go')
-rw-r--r--commands/new-account.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/new-account.go b/commands/new-account.go
index 8d2fef5..ff585c0 100644
--- a/commands/new-account.go
+++ b/commands/new-account.go
@@ -13,15 +13,15 @@ func init() {
register(NewAccount{})
}
-func (_ NewAccount) Aliases() []string {
+func (NewAccount) Aliases() []string {
return []string{"new-account"}
}
-func (_ NewAccount) Complete(aerc *widgets.Aerc, args []string) []string {
+func (NewAccount) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
-func (_ NewAccount) Execute(aerc *widgets.Aerc, args []string) error {
+func (NewAccount) Execute(aerc *widgets.Aerc, args []string) error {
opts, _, err := getopt.Getopts(args, "t")
if err != nil {
return errors.New("Usage: new-account [-t]")