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

17
build.bat Normal file
View File

@@ -0,0 +1,17 @@
@echo off
echo Building VPN Client for Windows...
go mod download
go build -ldflags="-s -w" -o vpn-client.exe main.go
if %ERRORLEVEL% EQU 0 (
echo.
echo Build successful!
echo Executable: vpn-client.exe
) else (
echo.
echo Build failed!
exit /b 1
)
pause