Fixing import
All checks were successful
Anatid Blog CI Workflow / test (./backend) (push) Successful in 29s
Anatid Blog CI Workflow / test (./frontend) (push) Successful in 29s
Anatid Blog CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/anatid-blog-backend, ./backend) (push) Successful in 51s
Anatid Blog CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/anatid-blog-frontend, ./frontend) (push) Successful in 44s
Anatid Blog CI Workflow / deploy (push) Successful in 12s

This commit is contained in:
Phill Pover 2025-03-29 09:55:00 +00:00
parent 6b414d9b71
commit 76cf733438

View File

@ -3,6 +3,7 @@ import { PostController } from './post.controller';
import { PostService } from './post.service';
@Module({
imports: [ PostService ],
controllers: [PostController],
providers: [PostService]
})