Match Figma profile, blocks, auth, and archive backend

This commit is contained in:
boutmoun123
2026-06-28 18:46:01 +03:00
parent 3298338e70
commit 36ac36e333
44 changed files with 1245 additions and 39 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { MetadataController } from './metadata.controller';
import { MetadataService } from './metadata.service';
@Module({
controllers: [MetadataController],
providers: [MetadataService],
exports: [MetadataService],
})
export class MetadataModule {}