summaryrefslogtreecommitdiff
path: root/config/client.go
blob: 1515aae7b954afc5840b9f15d4ef2ee5599d1d5d (plain)
1
2
3
4
5
6
7
8
9
10
11
package config

// ClientConfig represents a DTail client configuration (empty as of now as there
// are no available config options yet, but that may changes in the future).
type ClientConfig struct {
}

// Create a new default client configuration.
func newDefaultClientConfig() *ClientConfig {
	return &ClientConfig{}
}