refactor: max token; migrate.

This commit is contained in:
2026-05-11 08:51:53 +08:00
parent cb7ed2c4cc
commit 25ed68be27
4 changed files with 340 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
$ErrorActionPreference = "Stop"
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
$projectRoot = Resolve-Path (Join-Path $scriptDir "..")
Push-Location $projectRoot
try {
go run ./cmd/export_sql @args
}
finally {
Pop-Location
}