Files
go-utils/upgrade.bat
2023-10-25 16:55:53 +08:00

20 lines
213 B
Batchfile

echo off
::指定起始文件夹
set DIR="%cd%"
go get all
go mod tidy
cd %DIR%/bank_card
go get all
go mod tidy
cd %DIR%/entgo
go get all
go mod tidy
cd %DIR%/geoip
go get all
go mod tidy