Skip to content

Commit

Permalink
add missing service
Browse files Browse the repository at this point in the history
  • Loading branch information
sitek94 committed Nov 25, 2023
1 parent ffe8fc6 commit 4c48612
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/nestjs/src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { CatsModule } from '~/cats/cats.module'
import { appConfig } from '~/config/app.config'

import { AppController } from './app.controller'
import { AppService } from './app.service'

@Module({
imports: [
Expand All @@ -20,5 +21,6 @@ import { AppController } from './app.controller'
}),
],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}

0 comments on commit 4c48612

Please sign in to comment.