add content service and core config

This commit is contained in:
2025-05-12 15:26:49 +08:00
parent 9ac2fd8f44
commit 57c72e010b
4 changed files with 105 additions and 42 deletions
+4
View File
@@ -1,8 +1,12 @@
import { Module } from '@nestjs/common';
import { PostService } from '@/modules/content/services/post.service';
import { PostController } from './controllers/post.controller';
@Module({
controllers: [PostController],
providers: [PostService],
exports: [PostService],
})
export class ContentModule {}