added UpdateIpTableListClient

This commit is contained in:
2021-04-04 21:51:11 +04:00
parent 1c733a694e
commit 2875b7228b
5 changed files with 108 additions and 6 deletions

11
client/iptable_test.go Normal file
View File

@@ -0,0 +1,11 @@
package client
import "testing"
func TestUpdateIpTableListClient(t *testing.T) {
err := UpdateIpTableListClient()
if err != nil {
t.Error(err)
}
}