mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-18 03:39:29 +00:00
10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
import ShowQueueService from "./ShowQueueService";
|
|
|
|
const DeleteQueueService = async (queueId: number | string): Promise<void> => {
|
|
const queue = await ShowQueueService(queueId);
|
|
|
|
await queue.destroy();
|
|
};
|
|
|
|
export default DeleteQueueService;
|