1
0
mirror of https://github.com/directorz/mailfull-go.git synced 2025-12-23 04:27:03 +00:00

Implement domainlist subcommand

This commit is contained in:
teru
2016-07-31 17:06:36 +09:00
parent c7aec5b0ba
commit 70b036b6c1
2 changed files with 59 additions and 0 deletions

View File

@@ -43,6 +43,10 @@ func main() {
meta.SubCmdName = c.Subcommand()
return &command.InitCommand{Meta: meta}, nil
},
"domainlist": func() (cli.Command, error) {
meta.SubCmdName = c.Subcommand()
return &command.DomainListCommand{Meta: meta}, nil
},
}
exitCode, err := c.Run()