import { Request, Response } from "express"; import ImportContactsService from "../services/WbotServices/ImportContactsService"; export const store = async (req: Request, res: Response): Promise => { await ImportContactsService(); return res.status(200).json({ message: "contacts imported" }); };