mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
import { Container } from 'typedi';
|
|
import Cache from '@/services/Cache';
|
|
|
|
export default (tenantId: number) => {
|
|
const cacheInstance = new Cache();
|
|
|
|
return cacheInstance;
|
|
}; |