Fix config name duplication.
This commit is contained in:
parent
d33837ef38
commit
0d52209432
2 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@ type Config struct {
|
|||
|
||||
type LogConfig struct {
|
||||
Level string `fig:"level" yaml:"level" enum:"debug,info,warn,error" default:"info"`
|
||||
Type string `fig:"level" yaml:"level" enum:"json,console" default:"console"`
|
||||
Type string `fig:"type" yaml:"type" enum:"json,console" default:"console"`
|
||||
}
|
||||
|
||||
// Configuration for updating.
|
||||
|
|
|
|||
2
main.go
2
main.go
|
|
@ -6,7 +6,7 @@ const (
|
|||
serviceDisplayName = "Virtual VXLAN"
|
||||
serviceVendor = "com.mrgeckosmedia"
|
||||
serviceDescription = "Virtual VXLAN using TUN interfaces"
|
||||
serviceVersion = "0.1"
|
||||
serviceVersion = "0.1.1"
|
||||
defaultConfigFile = "config.yaml"
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue