mirror of
https://git.meshkee.com/Meshkee/backend.git
synced 2026-08-12 06:40:58 +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 { CustomersController } from './customers.controller';
|
|
import { CustomersService } from './customers.service';
|
|
|
|
@Module({
|
|
imports: [AuthModule],
|
|
controllers: [CustomersController],
|
|
providers: [CustomersService],
|
|
})
|
|
export class CustomersModule {}
|