Skip to content

Commit

Permalink
refactor: reorganize imports in whatsapp-action.module.ts for improve…
Browse files Browse the repository at this point in the history
…d clarity and maintainability; comment out unused downloader actions
  • Loading branch information
binsarjr committed Dec 21, 2024
1 parent ee4520f commit 02b3458
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions libs/whatsapp-action/src/whatsapp-action.module.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { GeminiToolsModule } from '@app/gemini-tools';
import { AntiDeletedMessageAction } from '@app/whatsapp-action/always-executed/anti-deleted-message.action';
import { AntiViewOnceAction } from '@app/whatsapp-action/always-executed/anti-view-once.action';
import { DeleteSavedMessage } from '@app/whatsapp-action/always-executed/delete-saved-message.action';
Expand All @@ -16,15 +17,12 @@ import { SendStoryAction } from '@app/whatsapp-action/random/send-story.action';
import { ScanQrCodeAction } from '@app/whatsapp-action/scan-qr-code.action';
import { ContactUpsertAction } from '@app/whatsapp-action/wa-event/contact-upsert.action';
import { Module } from '@nestjs/common';
import { ImgToStickerAction } from './random/img-to-sticker.action';
import { StickerToImgAction } from './random/sticker-to-img.action';
import { AiGeminiProofReaderAction } from './ai/ai-gemini-copywriting.action';
import { AiGeminiAction } from './ai/ai-gemini.action';
import { GeminiToolsModule } from '@app/gemini-tools';
import { AiLearnGeminiAction } from './ai/ai-learn-gemini.action';
import { TiktokDownloaderAction } from './downloader/tiktok-downloader.action';
import { InstagramDownloaderAction } from './downloader/instagram-downloader.action';
import { ExtractPhoneNumber } from './group/extract-phoneNumber.action';
import { AiGeminiProofReaderAction } from './ai/ai-gemini-copywriting.action';
import { ImgToStickerAction } from './random/img-to-sticker.action';
import { StickerToImgAction } from './random/sticker-to-img.action';

@Module({
providers: [
Expand Down Expand Up @@ -52,8 +50,8 @@ import { AiGeminiProofReaderAction } from './ai/ai-gemini-copywriting.action';
DeleteSavedMessage,

// downloader
InstagramDownloaderAction,
TiktokDownloaderAction,
// InstagramDownloaderAction,
// TiktokDownloaderAction,
ContactUpsertAction,
SendStoryAction,

Expand Down

0 comments on commit 02b3458

Please sign in to comment.