Skip to content

Instantly share code, notes, and snippets.

@PCreations
Created May 31, 2024 17:00
Show Gist options
  • Save PCreations/dccff5d48af03b980acf4d48d560643f to your computer and use it in GitHub Desktop.
Save PCreations/dccff5d48af03b980acf4d48d560643f to your computer and use it in GitHub Desktop.
c378cecd9a41.diff
-1,9 +1,9 @@
import { Controller, Get, Query } from '@nestjs/common';
-import { AppService } from './app.service';
+import { AddBookUseCase } from './add-book.usecase';
@Controller()
export class AppController {
- constructor(private readonly appService: AppService) {}
+ constructor(private readonly addBookUseCase: AddBookUseCase) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment