diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-21 16:31:04 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-21 16:53:50 -0400 |
commit | 6811143925384ba1cfda8b3e1b338b0cfb9ac6e3 (patch) | |
tree | 584ce88b40ab87828d6adbfdb6bef7a5d3046600 /commands | |
parent | 176245208d40a9ca2ec324be7863a22819de29bc (diff) | |
download | aerc-6811143925384ba1cfda8b3e1b338b0cfb9ac6e3.tar.gz |
New account wizard, part one
Diffstat (limited to 'commands')
-rw-r--r-- | commands/new-account.go | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/commands/new-account.go b/commands/new-account.go new file mode 100644 index 0000000..6a64eb2 --- /dev/null +++ b/commands/new-account.go @@ -0,0 +1,20 @@ +package commands + +import ( + "errors" + + "git.sr.ht/~sircmpwn/aerc/widgets" +) + +func init() { + register("new-account", CommandNewAccount) +} + +func CommandNewAccount(aerc *widgets.Aerc, args []string) error { + if len(args) != 1 { + return errors.New("Usage: new-account") + } + wizard := widgets.NewAccountWizard() + aerc.NewTab(wizard, "New account") + return nil +} |