update v-advance

This commit is contained in:
lzx
2025-12-01 15:45:05 +08:00
parent 16173b7ccd
commit de010e39ee
22 changed files with 1963 additions and 175 deletions

10
cmd/build.linux.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
cd "$(dirname "$0")"
go build -o ../bin/client main.go
if [ $? -eq 0 ]; then
echo "编译成功!可执行文件位于: ../bin/client"
else
echo "编译失败!"
exit 1
fi