sonarQ test on PR #1

Merged
andrej merged 15 commits from dev into main 2026-05-12 10:38:22 +00:00
Showing only changes of commit 52dd7c69aa - 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 {}