move to ubiquiti-clients, add edgeos

This commit is contained in:
2026-01-14 11:11:34 -05:00
parent 195a9f7a9f
commit b21475b487
6 changed files with 698 additions and 10 deletions

17
pkg/edgeos/config.go Normal file
View File

@@ -0,0 +1,17 @@
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
}