feat: labels (WIP)

This commit is contained in:
Philipinho
2026-05-09 17:06:38 +01:00
parent 0aeaa43112
commit aa657e7bad
14 changed files with 683 additions and 1 deletions
@@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { LabelController } from './label.controller';
import { LabelService } from './label.service';
@Module({
controllers: [LabelController],
providers: [LabelService],
exports: [LabelService],
})
export class LabelModule {}