Files
ubiquiti-clients/pkg/toughswitch/config.go
Ryan D McGuire 195a9f7a9f
All checks were successful
Publish / release (push) Successful in 29s
rename to toughswitch
2026-01-05 16:25:23 -05:00

18 lines
306 B
Go

package toughswitch
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
}