Files
bigcapital/packages/server/src/loaders/tenantCache.ts
2023-02-03 11:57:50 +02:00

8 lines
178 B
TypeScript

import { Container } from 'typedi';
import Cache from '@/services/Cache';
export default (tenantId: number) => {
const cacheInstance = new Cache();
return cacheInstance;
};