import { Module } from '@nestjs/common';
import { ImageFilterModule } from './image-filter/image-filter.module';
import { ChatGptImageService } from '../third-party/services/chat-gpt/services/chat-gpt-image.service';
import { RekognitionService } from '../third-party/services/aws/rekognition.service';
import { ChatGptModule } from '../third-party/services/chat-gpt/chat-gpt.module';
import { StableDiffusionModule } from '../third-party/services/stable-diffusion/stable-diffusion.module';
import { ImageFilterService } from './image-filter/image-filter.service';
import { RekognitionModule } from '../third-party/services/aws/rekognition.module';

@Module({
	imports: [
		ChatGptModule,
		StableDiffusionModule,
		RekognitionModule
	],
	providers: [
		ImageFilterService
	],
	exports: [
		ImageFilterService
	]
})
export class ImageGuardsModule { }
