Alert system

This commit is contained in:
Marcelo
2026-01-15 21:03:41 +00:00
parent 9f1af71d15
commit 0f88207f3f
20 changed files with 1791 additions and 145 deletions

8
lib/sms.ts Normal file
View File

@@ -0,0 +1,8 @@
type SmsPayload = {
to: string;
body: string;
};
export async function sendSms(_payload: SmsPayload) {
throw new Error("SMS not configured");
}