feat: Implement contact message functionality including API endpoints, database storage, and email notifications.

This commit is contained in:
2025-12-09 15:39:20 +03:00
parent 5dc5cd87a8
commit 186bcbf6b8
9 changed files with 138 additions and 0 deletions
+2
View File
@@ -7,6 +7,7 @@ import { CategoryModule } from './category/category.module';
import { RestaurantModule } from './restaurant/restaurant.module';
import { ItemModule } from './item/item.module';
import { FileModule } from './file/file.module';
import { ContactModule } from './contact/contact.module';
@Module({
imports: [
@@ -17,6 +18,7 @@ import { FileModule } from './file/file.module';
RestaurantModule,
ItemModule,
FileModule,
ContactModule,
],
})
export class AppModule {}