mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08: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"`
|
|
}
|