Fix config name duplication.

This commit is contained in:
GRMrGecko 2025-01-06 14:50:44 -06:00
parent d33837ef38
commit 0d52209432
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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"
)