chore: use stdlib min

This commit is contained in:
Igor Sirotin 2025-09-30 18:17:18 +01:00
parent 14f865f7d3
commit 68b48e88df
No known key found for this signature in database
GPG Key ID: 0EABBCB40CB9AD4A

View File

@ -82,10 +82,3 @@ type ReadPacket struct {
Data []byte
Addr *net.UDPAddr
}
func min(x, y int) int {
if x > y {
return y
}
return x
}