| 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 |