summaryrefslogtreecommitdiff
path: root/internal/clients/args.go
blob: dea5a9e1f4eca16e5b37d3f8d43a19d7ed1a0a62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package clients

import (
	"github.com/mimecast/dtail/internal/omode"
)

// Args is a helper struct to summarize common client arguments.
type Args struct {
	Mode              omode.Mode
	ServersStr        string
	UserName          string
	What              string
	Regex             string
	TrustAllHosts     bool
	Discovery         string
	ConnectionsPerCPU int
}