link-stack/apps/bridge-worker/tasks/voice/send-voice-message.ts

12 lines
256 B
TypeScript
Raw Normal View History

2024-05-14 15:31:44 +02:00
// import { db, getWorkerUtils } from "bridge-common";
2024-04-30 13:13:49 +02:00
interface SendVoiceMessageTaskOptions {
message: any;
}
const sendVoiceMessageTask = async ({
message,
}: SendVoiceMessageTaskOptions): Promise<void> => {};
export default sendVoiceMessageTask;