实现远程升级节点

This commit is contained in:
刘祥超
2020-10-28 12:35:36 +08:00
parent 7eeb2825f1
commit 5810fd9144
8 changed files with 286 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
package installers
import "testing"
func TestDeployManager_LoadFiles(t *testing.T) {
files := NewDeployManager().LoadFiles()
for _, file := range files {
t.Logf("%#v", file)
}
}