in internal/pkg/config/config.go [91:97]
func (c *Config) Unmarshal(key string, out interface{}) error {
err := c.koanf.Unmarshal(key, out)
if err != nil {
return fmt.Errorf("cannot unmarshal config for key %q: %v", key, err)
}
return nil
}