9 lines
330 B
Go
9 lines
330 B
Go
package cmd
|
|
|
|
// GmailTrackCmd groups tracking-related subcommands
|
|
type GmailTrackCmd struct {
|
|
Setup GmailTrackSetupCmd `cmd:"" help:"Set up email tracking (deploy Cloudflare Worker)"`
|
|
Opens GmailTrackOpensCmd `cmd:"" help:"Query email opens"`
|
|
Status GmailTrackStatusCmd `cmd:"" help:"Show tracking configuration status"`
|
|
}
|