mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2025-12-30 03:42:26 +00:00
10 lines
195 B
Go
10 lines
195 B
Go
package config
|
|
|
|
type Disk struct {
|
|
MountPoint string `mapstructure:"mount-point" json:"mount-point" yaml:"mount-point"`
|
|
}
|
|
|
|
type DiskList struct {
|
|
Disk `yaml:",inline" mapstructure:",squash"`
|
|
}
|