Files
MIS-Contro-Tower/lib/sms.ts
2026-01-15 21:03:41 +00:00

9 lines
151 B
TypeScript

type SmsPayload = {
to: string;
body: string;
};
export async function sendSms(_payload: SmsPayload) {
throw new Error("SMS not configured");
}