first commit
This commit is contained in:
@@ -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 {}
|
||||
Reference in New Issue
Block a user