feat: chaite 初始化逻辑

This commit is contained in:
ikechan8370 2025-03-10 23:08:23 +08:00
parent 88312cdf38
commit fbcf4e6c08
16 changed files with 549 additions and 1269 deletions

4
utils/common.js Normal file
View file

@ -0,0 +1,4 @@
import * as crypto from 'node:crypto'
export function md5 (str) {
return crypto.createHash('md5').update(str).digest('hex')
}