mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
refactor: wip to nestjs
This commit is contained in:
17
packages/server-nest/src/modules/Bills/Bills.module.ts
Normal file
17
packages/server-nest/src/modules/Bills/Bills.module.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { BillsApplication } from './Bills.application';
|
||||
import { CreateBill } from './commands/CreateBill.service';
|
||||
import { DeleteBill } from './commands/DeleteBill.service';
|
||||
import { GetBill } from './queries/GetBill';
|
||||
import { BillDTOTransformer } from './commands/BillDTOTransformer.service';
|
||||
|
||||
@Module({
|
||||
providers: [
|
||||
BillsApplication,
|
||||
CreateBill,
|
||||
GetBill,
|
||||
DeleteBill,
|
||||
BillDTOTransformer,
|
||||
],
|
||||
})
|
||||
export class BillsModule {}
|
||||
Reference in New Issue
Block a user