[优化]大改动,指令下发采用规则链rpc请求

This commit is contained in:
PandaX
2023-10-14 10:00:05 +08:00
parent 42be3b23e4
commit 7c8001a687
54 changed files with 1256 additions and 294 deletions

View File

@@ -1,6 +1,9 @@
package tool
import "testing"
import (
"pandax/pkg/global_model"
"testing"
)
func TestToCamelCase(t *testing.T) {
camelCase := ToCamelCase("hello_world")
@@ -8,7 +11,7 @@ func TestToCamelCase(t *testing.T) {
}
func TestGenerateID(t *testing.T) {
id := GenerateID()
id := global_model.GenerateID()
t.Log(id)
}