返回 oh-my-ppt
keys.ts
根目录 / src / main / agent-runtime / lock / keys.ts
1 export const sessionLockKey = (sessionId: string): string => `session:${sessionId}`
2
3 export const imageHistoryLockKey = (owner: string): string => `image-history:${owner}`
4
5 export const styleLockKey = (styleId: string): string => `style:${styleId}`
6
6 lines TYPESCRIPT