remove composition of Commons

This commit is contained in:
Willy Kloucek
2022-05-16 09:44:14 +02:00
parent 922d1414d8
commit 3ce2c2123d
30 changed files with 89 additions and 90 deletions

View File

@@ -7,11 +7,11 @@ import (
)
type Config struct {
*shared.Commons `yaml:"-"`
Service Service `yaml:"-"`
Tracing *Tracing `yaml:"tracing"`
Log *Log `yaml:"log"`
Debug Debug `yaml:"debug"`
Commons *shared.Commons `yaml:"-"` // don't use this directly as configuration for a service
Service Service `yaml:"-"`
Tracing *Tracing `yaml:"tracing"`
Log *Log `yaml:"log"`
Debug Debug `yaml:"debug"`
GRPC GRPCConfig `yaml:"grpc"`