c6a86719dd
feat(pos): add POS controller and service for order creation and stock retrieval refactor(pos): enhance stock and product category retrieval with pagination and mapping
12 lines
316 B
TypeScript
12 lines
316 B
TypeScript
import { Module } from '@nestjs/common'
|
|
import { PrismaModule } from '../../prisma/prisma.module'
|
|
import { PosController } from './pos.controller'
|
|
import { PosService } from './pos.service'
|
|
|
|
@Module({
|
|
imports: [PrismaModule],
|
|
controllers: [PosController],
|
|
providers: [PosService],
|
|
})
|
|
export class PosModule {}
|