mirror of
https://git.meshkee.com/Meshkee/backend.git
synced 2026-08-11 22:30:59 +04:30
NestJS backend with Prisma, Docker Compose for Postgres/Redis, and deploy docs for the production VM.
12 lines
351 B
TypeScript
12 lines
351 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AuthModule } from '../auth/auth.module';
|
|
import { FavoritesController } from './favorites.controller';
|
|
import { FavoritesService } from './favorites.service';
|
|
|
|
@Module({
|
|
imports: [AuthModule],
|
|
controllers: [FavoritesController],
|
|
providers: [FavoritesService],
|
|
})
|
|
export class FavoritesModule {}
|