Files
ubiquiti-clients/pkg/edgeos/config.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
}