File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ import (
1818
1919type Frontier struct {
2020 // configuration version
21- Version int `yaml:"version"`
22- Log logger.Config `yaml:"log"`
23- NewRelic NewRelic `yaml:"new_relic"`
24- App server.Config `yaml:"app"`
25- DB db.Config `yaml:"db"`
26- UI server.UIConfig `yaml:"ui"`
27- SpiceDB spicedb.Config `yaml:"spicedb"`
28- Billing billing.Config `yaml:"billing"`
21+ Version int `yaml:"version" mapstructure:"version" `
22+ Log logger.Config `yaml:"log" mapstructure:"log" `
23+ NewRelic NewRelic `yaml:"new_relic" mapstructure:"new_relic" `
24+ App server.Config `yaml:"app" mapstructure:"app" `
25+ DB db.Config `yaml:"db" mapstructure:"db" `
26+ UI server.UIConfig `yaml:"ui" mapstructure:"ui" `
27+ SpiceDB spicedb.Config `yaml:"spicedb" mapstructure:"spicedb" `
28+ Billing billing.Config `yaml:"billing" mapstructure:"billing" `
2929}
3030
3131type NewRelic struct {
You can’t perform that action at this time.
0 commit comments