| 12345678910111213 |
- import { Module } from '@nestjs/common'
- import { TypeOrmModule } from '@nestjs/typeorm'
- import { FormService } from './form.service'
- import { Form } from './entities/form.entity'
- import { FormController } from './form.controller'
- @Module({
- imports: [TypeOrmModule.forFeature([Form])],
- controllers: [FormController],
- providers: [FormService],
- exports: [FormService]
- })
- export class FormModule { }
|