新增聊天功能

This commit is contained in:
2024-10-14 17:40:11 +08:00
parent 99ed84f534
commit 245875881c
13 changed files with 360 additions and 12 deletions
+13
View File
@@ -0,0 +1,13 @@
package utils
import (
"fmt"
"syscall"
"testing"
)
func TestP1(t *testing.T) {
text := "test"
data := syscall.StringToUTF16(text)
fmt.Println(data)
}