SonarQ test on PR #1

Open
andrej wants to merge 14 commits from dev into main
Showing only changes of commit 78151e06b8 - Show all commits

View File

@@ -0,0 +1,9 @@
import { Module } from '@nestjs/common';
import { ItemsController } from './items.controller';
import { ItemsService } from './items.service';
@Module({
controllers: [ItemsController],
providers: [ItemsService],
})
export class ItemsModule {}