Files
bigcapital/server/src/loaders/tenantCache.ts
Ahmed Bouhuolia a22c8395f3 feat: remove path alias.
feat: remove Webpack and depend on nodemon.
feat: refactoring expenses.
feat: optimize system users with caching.
feat: architecture tenant optimize.
2020-09-15 00:51:39 +02:00

8 lines
176 B
TypeScript

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