mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-14 13:44:37 +08:00
13 lines
204 B
Go
13 lines
204 B
Go
package models
|
|
|
|
import "golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
|
|
|
type PeerUpdate struct {
|
|
Network string
|
|
Peers []wgtypes.PeerConfig
|
|
}
|
|
|
|
type KeyUpdate struct {
|
|
Network string
|
|
Interface string
|
|
}
|