docs: add comprehensive client API reference

This commit is contained in:
2026-08-11 19:09:29 +08:00
parent 5b5f6f8f00
commit 2d1deb54f0
27 changed files with 10727 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
$ErrorActionPreference = "Stop"
$env:GOWORK = "off"
$env:GOLANG_PROTOBUF_REGISTRATION_CONFLICT = "warn"
try {
go run .
if ($LASTEXITCODE -ne 0) { throw "API documentation generation failed" }
} finally {
Remove-Item Env:GOWORK -ErrorAction SilentlyContinue
Remove-Item Env:GOLANG_PROTOBUF_REGISTRATION_CONFLICT -ErrorAction SilentlyContinue
}