From c128865c4c7411c29a59fca9a3a2f95537686d7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20B=C3=BCtow?= Date: Mon, 20 Jan 2020 18:41:05 +0000 Subject: Move commands to cmd/ and move internal dependencies to internal/ --- internal/config/client.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 internal/config/client.go (limited to 'internal/config/client.go') 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{} +} -- cgit v1.2.3