diff options
| author | sinner <[email protected]> | 2026-01-19 06:02:10 -0500 |
|---|---|---|
| committer | sinner <[email protected]> | 2026-01-19 06:02:10 -0500 |
| commit | 85caa38c7b45766f044a016b88a410f75cb7469e (patch) | |
| tree | fd6be3a176b62097494ced076768d82179a4dbcf /cmd/email.go | |
| parent | 542a09fd14761b4789ae89e16060b1b453e2e0f2 (diff) | |
| download | dborg-85caa38c7b45766f044a016b88a410f75cb7469e.tar.gz dborg-85caa38c7b45766f044a016b88a410f75cb7469e.zip | |
Diffstat (limited to 'cmd/email.go')
| -rw-r--r-- | cmd/email.go | 18 |
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() { |
