增加DNS服务商账号管理

This commit is contained in:
刘祥超
2020-11-11 21:32:11 +08:00
parent d3e6e757a5
commit 1daf04e5ef
15 changed files with 2651 additions and 320 deletions

View File

@@ -0,0 +1,12 @@
package ipconfigs
import "testing"
func TestIPSetAction_Run(t *testing.T) {
action := &IPSetAction{}
err := action.Run(&IPItemConfig{})
if err != nil {
t.Fatal(err)
}
t.Log("ok")
}