实现DNS节点远程安装

This commit is contained in:
GoEdgeLab
2021-08-11 21:00:29 +08:00
parent 30ba617f94
commit 6460489a91
18 changed files with 859 additions and 78 deletions

View File

@@ -0,0 +1,19 @@
package installers
import (
"testing"
"time"
)
func TestQueue_InstallNode(t *testing.T) {
queue := NewQueue()
err := queue.InstallNodeProcess(16, false)
if err != nil {
t.Fatal(err)
}
time.Sleep(1 * time.Second)
t.Log("OK")
}