summaryrefslogtreecommitdiffstats
path: root/cmd/email.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/email.go')
-rw-r--r--cmd/email.go18
1 files changed, 10 insertions, 8 deletions
diff --git a/cmd/email.go b/cmd/email.go
index f4306ec..85cc686 100644
--- a/cmd/email.go
+++ b/cmd/email.go
@@ -6,17 +6,19 @@ import (
)
var emailCmd = &cobra.Command{
- Use: "email",
- Short: "Email verification commands",
- Long: `Verify email addresses and check deliverability`,
+ Use: "email",
+ Aliases: []string{"e"},
+ Short: "Email verification commands",
+ Long: `Verify email addresses and check deliverability`,
}
var verifyEmailCmd = &cobra.Command{
- Use: "verify [email]",
- Short: "Verify email address",
- Long: `Performs comprehensive email verification including format validation, MX records check, SMTP verification, and disposable/webmail detection`,
- Args: cobra.ExactArgs(1),
- RunE: runVerifyEmail,
+ Use: "verify [email]",
+ Aliases: []string{"v"},
+ Short: "Verify email address",
+ Long: `Performs comprehensive email verification including format validation, MX records check, SMTP verification, and disposable/webmail detection`,
+ Args: cobra.ExactArgs(1),
+ RunE: runVerifyEmail,
}
func init() {