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

12 lines
253 B
TypeScript
Raw Normal View History

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