mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
feat: remove Webpack and depend on nodemon. feat: refactoring expenses. feat: optimize system users with caching. feat: architecture tenant optimize.
8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
import { Container } from 'typedi';
|
|
import Cache from 'services/Cache';
|
|
|
|
export default (tenantId: number) => {
|
|
const cacheInstance = new Cache();
|
|
|
|
return cacheInstance;
|
|
}; |