mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
19 lines
776 B
TypeScript
19 lines
776 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { FinancialSheetMeta } from './FinancialSheetMeta';
|
|
import { TenancyContext } from '@/modules/Tenancy/TenancyContext.service';
|
|
import { TableSheetPdf } from './TableSheetPdf';
|
|
import { TemplateInjectableModule } from '@/modules/TemplateInjectable/TemplateInjectable.module';
|
|
import { ChromiumlyTenancyModule } from '@/modules/ChromiumlyTenancy/ChromiumlyTenancy.module';
|
|
import { InventoryCostModule } from '@/modules/InventoryCost/InventoryCost.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
TemplateInjectableModule,
|
|
ChromiumlyTenancyModule,
|
|
InventoryCostModule,
|
|
],
|
|
providers: [FinancialSheetMeta, TenancyContext, TableSheetPdf],
|
|
exports: [FinancialSheetMeta, TableSheetPdf],
|
|
})
|
|
export class FinancialSheetCommonModule {}
|