import { Request, Response } from "express"; import AppError from "../errors/AppError"; import ListStatusChatEndService from "../services/StatusChatEndService/ListStatusChatEndService"; export const show = async (req: Request, res: Response): Promise => { const { statusChatEnd, count, hasMore } = await ListStatusChatEndService({ searchParam: "", pageNumber: "1" }); return res.status(200).json(statusChatEnd); };