summaryrefslogtreecommitdiff
path: root/internal/clients/args.go
blob: 5fe0a725c54b1416a9512e5bea3f7a54f9fb27ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
	Files             string
	Regex             string
	TrustAllHosts     bool
	Discovery         string
	ConnectionsPerCPU int
	PingTimeout       int
}