first commit

This commit is contained in:
2025-11-06 16:40:32 +03:00
commit f0948a5b05
51 changed files with 13047 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { Module } from '@nestjs/common';
import { auth } from './auth/auth';
import { AuthModule } from '@thallesp/nestjs-better-auth';
import { UserModule } from './user/user.module';
import { PrismaModule } from './prisma/prisma.module';
import { CategoryModule } from './category/category.module';
import { RestaurantModule } from './restaurant/restaurant.module';
import { ItemModule } from './item/item.module';
@Module({
imports: [
AuthModule.forRoot({ auth }),
PrismaModule,
UserModule,
CategoryModule,
RestaurantModule,
ItemModule,
],
})
export class AppModule {}