Files
ubiquiti-clients/pkg/edgeos/config.go

18 lines
301 B
Go

package edgeos
import (
"net/http"
"time"
)
type Config struct {
Host string
Scheme string
Insecure bool
Username string
Password string
Timeout time.Duration
// Transport allows customizing the http transport (useful for testing or client middleware)
Transport http.RoundTripper
}