diff --git a/backend/src/post/post.module.ts b/backend/src/post/post.module.ts index af735ef..fede4f1 100644 --- a/backend/src/post/post.module.ts +++ b/backend/src/post/post.module.ts @@ -3,6 +3,7 @@ import { PostController } from './post.controller'; import { PostService } from './post.service'; @Module({ + imports: [ PostService ], controllers: [PostController], providers: [PostService] })