支持tdengine

This commit is contained in:
XM-GO
2023-06-19 17:06:38 +08:00
parent 997e0862fa
commit 8b5a0206b9
12 changed files with 186 additions and 99 deletions

8
pkg/tool/base_test.go Normal file
View File

@@ -0,0 +1,8 @@
package tool
import "testing"
func TestToCamelCase(t *testing.T) {
camelCase := ToCamelCase("hello_world")
t.Log(camelCase)
}