fix: unecessary string modification

Signed-off-by: Shivansh Vij <shivanshvij@loopholelabs.io>
This commit is contained in:
Shivansh Vij
2024-04-24 12:30:26 -07:00
parent 722c47fc08
commit a1ae304d07

View File

@@ -32,7 +32,7 @@ func main() {
}
}
if serverType == strings.ToLower("udp") {
if serverType == "udp" {
// Start the UDP echo server
ServerAddr, err := net.ResolveUDPAddr("udp", ":10002")