From 7f9a31ac3e4cca7ab2a28babaadd27e9dc076661 Mon Sep 17 00:00:00 2001 From: Owen Date: Wed, 26 Mar 2025 10:54:41 -0400 Subject: [PATCH] Remove listen port - unused --- wg/wg.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/wg/wg.go b/wg/wg.go index 7330fdf..9e78624 100644 --- a/wg/wg.go +++ b/wg/wg.go @@ -23,9 +23,8 @@ import ( ) type WgConfig struct { - ListenPort int `json:"listenPort"` - IpAddress string `json:"ipAddress"` - Peers []Peer `json:"peers"` + IpAddress string `json:"ipAddress"` + Peers []Peer `json:"peers"` } type Peer struct {