9 lines
279 B
Go
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"`
|
|
}
|