docs: project docs, scripts, deployment configs, and evidence

This commit is contained in:
2026-04-02 11:22:17 +08:00
parent 4718980ab5
commit bbeeb63dfa
396 changed files with 165018 additions and 0 deletions

14
test_go.bat Normal file
View File

@@ -0,0 +1,14 @@
@echo off
echo Testing Go installation...
echo.
echo Checking Go version...
"C:\Program Files\Go\bin\go.exe" version
if %errorlevel% == 0 (
echo.
echo SUCCESS: Go is working!
) else (
echo.
echo ERROR: Go is not working
)
echo.
pause