Skip to content

Commit

Permalink
fix missing quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
louisroyer committed Feb 14, 2024
1 parent 9d05489 commit 9c21e87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ func ParseConf(file string) error {
}

type CtrlConfig struct {
Debug *bool `yaml:"debug,omitempty"` // default: false
PFCPAddress *string `yaml:"pfcp-address,omitempty"`
HTTPAddress *string `yaml:"http-address,omitempty"`
HTTPPort *string `yaml:http-port,omitempty"` // default: 80
Debug *bool `yaml:debug,omitempty"`
HTTPPort *string `yaml:"http-port,omitempty"` // default: 80
}

0 comments on commit 9c21e87

Please sign in to comment.