commited readiptable

Signed-off-by: Akilan1999 <akilan.selvacoumar@planetscale.com>
This commit is contained in:
Akilan1999
2021-03-20 19:19:34 +04:00
parent 60485a6a41
commit 79860a2756
15 changed files with 232 additions and 3 deletions

12
p2p/readiptable_test.go Normal file
View File

@@ -0,0 +1,12 @@
package p2p
import (
"testing"
)
func TestReadIpTable(t *testing.T) {
_, err := ReadIpTable()
if err != nil {
t.Fatal(err)
}
}