You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
421 B
12 lines
421 B
import { Module } from '@nestjs/common'; |
|
import { InvoiceService } from './invoice.service'; |
|
import { InvoiceController } from './invoice.controller'; |
|
import { SequelizeModule } from '@nestjs/sequelize'; |
|
import { Invoice } from './entities/invoice.entity'; |
|
|
|
@Module({ |
|
imports : [SequelizeModule.forFeature([Invoice])], |
|
controllers: [InvoiceController], |
|
providers: [InvoiceService], |
|
}) |
|
export class InvoiceModule {}
|
|
|