feat: add VS Code IDE bridge extension

This commit is contained in:
suger
2026-04-09 01:26:18 +08:00
parent 7f694168d0
commit 22480302c3
36 changed files with 3659 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
import { randomBytes } from 'node:crypto'
export function createAuthToken(): string {
return randomBytes(24).toString('hex')
}