Files
sundynix-go/config/system.go
T
2025-04-26 22:41:16 +08:00

8 lines
276 B
Go

package config
type System struct {
Addr int `mapstructure:"addr" json:"addr" yaml:"addr"`
DbType string `mapstructure:"db-type" json:"db-type" yaml:"db-type"`
RouterPrefix string `mapstructure:"router-prefix" json:"router-prefix" yaml:"router-prefix"`
}