2025-08-21 15:24:40 +09:00
|
|
|
import { Controller } from "@nestjs/common";
|
|
|
|
|
import { OrdersService } from "./orders.service";
|
|
|
|
|
import { ApiTags } from "@nestjs/swagger";
|
2025-08-20 18:02:50 +09:00
|
|
|
|
2025-08-21 15:24:40 +09:00
|
|
|
@ApiTags("orders")
|
|
|
|
|
@Controller("orders")
|
2025-08-20 18:02:50 +09:00
|
|
|
export class OrdersController {
|
|
|
|
|
constructor(private ordersService: OrdersService) {}
|
|
|
|
|
|
|
|
|
|
// TODO: Implement order endpoints
|
|
|
|
|
}
|