mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-10 18:38:22 +00:00
6 lines
208 B
Go
6 lines
208 B
Go
package vpn
|
|
|
|
type Wireguard struct {
|
|
Interfaces map[string]WireguardInterface `json:"interfaces" validate:"required,dive"`
|
|
Peers map[string]WireguardPeer `json:"peers" validate:"required,dive"`
|
|
}
|