import { TypeOrmSharedModule } from '@app/typeorm';
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { TypeOrmModule } from '@nestjs/typeorm';
import { CustomerLog } from './customerlog.entity';
import { StaticFileModule } from '@app/static-file';
import { CustomerlogController } from './customerlog.controller';
import { CustomerlogService } from './customerlog.service';

@Module({
  imports: [
    ConfigModule.forRoot(),
    TypeOrmSharedModule,
    TypeOrmModule.forFeature([CustomerLog]),
    StaticFileModule,
  ],
  controllers: [CustomerlogController],
  providers: [CustomerlogService],
})
export class CustomerlogModule {}
