diff --git a/config/plugins.go b/config/plugins.go index 004f5468f74..c9b148049a1 100644 --- a/config/plugins.go +++ b/config/plugins.go @@ -6,6 +6,6 @@ type Plugins struct { } type Plugin struct { - Disabled bool - Config interface{} + Disabled bool `json:",omitempty"` + Config interface{} `json:",omitempty"` }