14 lines
222 B
Go
14 lines
222 B
Go
package edgeos
|
|
|
|
import "time"
|
|
|
|
// Config represents the configuration for an EdgeOS device.
|
|
type Config struct {
|
|
Host string
|
|
Scheme string
|
|
Insecure bool
|
|
Username string
|
|
Password string
|
|
Timeout time.Duration
|
|
}
|