summaryrefslogtreecommitdiff
path: root/internal/config/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config/client.go')
-rw-r--r--internal/config/client.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/config/client.go b/internal/config/client.go
index 5386576..c1b488c 100644
--- a/internal/config/client.go
+++ b/internal/config/client.go
@@ -52,14 +52,14 @@ type termColors struct {
// 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 {
- TermColorsEnabled bool
- TermColors termColors `json:",omitempty"`
+ TermColorsEnable bool
+ TermColors termColors `json:",omitempty"`
}
// Create a new default client configuration.
func newDefaultClientConfig() *ClientConfig {
return &ClientConfig{
- TermColorsEnabled: true,
+ TermColorsEnable: true,
TermColors: termColors{
ClientErrorAttr: color.AttrBold,
ClientErrorBg: color.BgBlack,