import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { BrandsService } from './brands.service';
import { BrandsController } from './brands.controller';
import { BrandProfile } from './brand-profile.entity';
import { User } from '../users/user.entity';

@Module({
  imports: [TypeOrmModule.forFeature([BrandProfile, User])],
  providers: [BrandsService],
  controllers: [BrandsController],
  exports: [BrandsService]
})
export class BrandsModule {}
