2025-04-02 10:16:07 +08:00

9 lines
279 B
Go

package config
type Smb struct {
Host string `mapstructure:"host" json:"host" yaml:"host"`
Name string `mapstructure:"name" json:"name" yaml:"name"`
Pass string `mapstructure:"pass" json:"pass" yaml:"pass"`
Mount string `mapstructure:"mount" json:"mount" yaml:"mount"`
}