13 lines
170 B
Go
13 lines
170 B
Go
package nas
|
|
|
|
import "time"
|
|
|
|
type NASConfig struct {
|
|
Path string
|
|
Username string
|
|
Password string
|
|
Timeout time.Duration
|
|
RetryLimit int
|
|
VerifySize bool
|
|
}
|