brief-08-back/src/stocks/stocks.controller.ts
Mathis cb8de798c3
feat: Add new modules and services for stocks, transactions, and products
This commit introduces new nest.js modules for stocks, transactions and products, along with their respective services and controllers. These provide foundation for further feature development in these areas.
2024-07-12 14:20:48 +02:00

5 lines
101 B
TypeScript

import { Controller } from '@nestjs/common';
@Controller('stocks')
export class StocksController {}