feat: scripts.

This commit is contained in:
tx7do
2023-10-25 15:50:55 +08:00
parent f1b09af8eb
commit 1c225465de
3 changed files with 53 additions and 0 deletions

11
upgrade.bat Normal file
View File

@@ -0,0 +1,11 @@
echo off
::指定起始文件夹
set DIR="%cd%"
for /R %DIR% /d %%i in (*) do (
echo %%i
cd %%i
go get all
go mod tidy
)