Initial commit

This commit is contained in:
2026-04-05 20:33:30 +06:00
commit 83fbe7afdd
18 changed files with 3038 additions and 0 deletions

11
init.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/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"