diff options
| author | Paul Bütow <pbuetow@mimecast.com> | 2020-01-09 20:30:15 +0000 |
|---|---|---|
| committer | Paul Bütow <pbuetow@mimecast.com> | 2020-01-09 20:30:15 +0000 |
| commit | 3755a9911ecb05886577095f2b8cc8b9e4066a3a (patch) | |
| tree | 86e24bc466986cb5c9c6d167a918e6064defeafc /config/client.go | |
Release of DTail v1.0.0v1.0.0
Diffstat (limited to 'config/client.go')
| -rw-r--r-- | config/client.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config/client.go b/config/client.go new file mode 100644 index 0000000..1515aae --- /dev/null +++ b/config/client.go @@ -0,0 +1,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{} +} |
