12 lines
241 B
Batchfile
12 lines
241 B
Batchfile
@echo off
|
|
echo Initializing Go modules...
|
|
|
|
go mod tidy
|
|
go get github.com/fatih/color@v1.16.0
|
|
go get golang.org/x/sys@v0.16.0
|
|
|
|
echo.
|
|
echo Dependencies installed!
|
|
echo Now you can run: go build -ldflags="-s -w" -o vpn-client.exe main.go
|
|
pause
|