Ubiquiti EdgeOS Go Client

This commit is contained in:
2026-01-04 13:26:40 -05:00
commit e0c0321bc9
7 changed files with 1076 additions and 0 deletions

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

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