mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 10:58:35 +08:00
12 lines
253 B
Go
12 lines
253 B
Go
package config
|
|
|
|
/**
|
|
* @Description
|
|
* @Author Panda
|
|
* @Date 2021/12/31 15:13
|
|
**/
|
|
type Gen struct {
|
|
Dbname string `mapstructure:"dbname" json:"dbname" yaml:"dbname"`
|
|
Frontpath string `mapstructure:"frontpath" json:"frontpath" yaml:"frontpath"`
|
|
}
|