| 2 | import { prisma } from './db'; |
| 3 | |
| 4 | export interface CacheOptions { |
| 5 | ttl?: number; |
| 6 | tags?: string[]; |
| 7 | } |
| 8 | |
| 9 | export function getCacheKey(prefix: string, ...parts: string[]): string { |
| 10 | return `${prefix}:${parts.join(':')}`; |
nothing calls this directly
no outgoing calls
no test coverage detected