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

12 lines
268 B
TypeScript
Raw Permalink Normal View History

2024-06-05 08:52:41 +02:00
// import { db, getWorkerUtils } from "@link-stack/bridge-common";
2024-04-30 13:13:49 +02:00
interface SendVoiceMessageTaskOptions {
message: any;
}
const sendVoiceMessageTask = async ({
message,
}: SendVoiceMessageTaskOptions): Promise<void> => {};
export default sendVoiceMessageTask;