summaryrefslogtreecommitdiff
path: root/internal/config/client.go
diff options
context:
space:
mode:
authorPaul Bütow <pbuetow@mimecast.com>2020-01-20 18:41:05 +0000
committerPaul Bütow <pbuetow@mimecast.com>2020-01-21 14:35:23 +0000
commitc128865c4c7411c29a59fca9a3a2f95537686d7b (patch)
tree193bccc70d942c8b70cc93fae2670263701e43aa /internal/config/client.go
parent3755a9911ecb05886577095f2b8cc8b9e4066a3a (diff)
Move commands to cmd/ and move internal dependencies to internal/
Diffstat (limited to 'internal/config/client.go')
-rw-r--r--internal/config/client.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/internal/config/client.go b/internal/config/client.go
new file mode 100644
index 0000000..1515aae
--- /dev/null
+++ b/internal/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{}
+}