kodelyx-backend / src /instagram /instagram.module.ts
akashyadav758
implemented DmPlease comment webhook triggers and API service
134de2e
Raw
History Blame Contribute Delete
373 Bytes
import { Module } from '@nestjs/common';
import { InstagramController } from './instagram.controller';
import { InstagramService } from './instagram.service';
import { PrismaService } from '../prisma.service';
@Module({
controllers: [InstagramController],
providers: [InstagramService, PrismaService],
exports: [InstagramService],
})
export class InstagramModule {}