This commit is contained in:
NAME
2026-05-13 11:49:16 +00:00
parent a7ba436169
commit 31129e23f6
4 changed files with 70 additions and 46 deletions
+4 -3
View File
@@ -1,12 +1,12 @@
// sqs.module.ts
import { Module, Global } from '@nestjs/common';
import { SqsService } from './sqs.service';
import {Global, Module} from '@nestjs/common';
import {SqsService} from './sqs.service';
import {SqsPostService} from "./sqs.post.service";
import {SqsPosterWorker} from "./sqs.poster.worker";
import {XPosterRouterService} from "../x-poster/x-poster.router.service";
import {XPosterModule} from "../x-poster/x-poster.module";
import {FacebookApi} from "../x-poster/facebook.api";
import {NotifyService} from "../notify.service";
import {XCacheService} from "../x-cache/x-cache.service";
@Global()
@Module({
@@ -17,6 +17,7 @@ import {NotifyService} from "../notify.service";
SqsPosterWorker,
FacebookApi,
NotifyService,
XCacheService,
],
exports: [SqsService],
})