mqtt.go 220 B

1234567891011121314
  1. package models
  2. import "golang.zx2c4.com/wireguard/wgctrl/wgtypes"
  3. type PeerUpdate struct {
  4. Network string
  5. Interface string
  6. Peers []wgtypes.Peer
  7. }
  8. type KeyUpdate struct {
  9. Network string
  10. Interface string
  11. }