Files
Go-VPN-Client/init.sh
2026-04-05 20:33:30 +06:00

12 lines
244 B
Bash

#!/bin/bash
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 main.go"