rename to toughswitch

This commit is contained in:
2026-01-05 15:47:43 -05:00
parent 38eb2cc352
commit 438d422b53
8 changed files with 31 additions and 35 deletions

View File

@@ -1,11 +1,10 @@
package edgeos
package toughswitch
import (
"net/http"
"time"
)
// Config represents the configuration for an EdgeOS device.
type Config struct {
Host string
Scheme string
@@ -13,6 +12,6 @@ type Config struct {
Username string
Password string
Timeout time.Duration
// Transport allows customizing the http transport (useful for testing)
// Transport allows customizing the http transport (useful for testing or client middleware)
Transport http.RoundTripper
}