mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 22:05:50 +00:00
6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
import { randomBytes } from 'node:crypto'
|
|
|
|
export function createAuthToken(): string {
|
|
return randomBytes(24).toString('hex')
|
|
}
|