This commit is contained in:
2026-06-23 13:15:54 +08:00
parent 0e30ed0b36
commit c336f176e6
6 changed files with 0 additions and 6653 deletions

View File

@@ -0,0 +1,11 @@
$ErrorActionPreference = 'Stop'
$root = Split-Path -Parent $MyInvocation.MyCommand.Path
$standalone = Join-Path $root 'standalone'
Push-Location $standalone
try {
go run .
} finally {
Pop-Location
}