2023-05-19 15:22:48 -03:00
|
|
|
import purchase from "@/static/fixed_responses/purchase.json";
|
|
|
|
import { Request, Response } from "express";
|
|
|
|
|
|
|
|
export default (_req: Request, res: Response): void => {
|
2023-05-23 20:42:06 -04:00
|
|
|
res.json(purchase);
|
2023-05-19 15:22:48 -03:00
|
|
|
};
|