Alert system
This commit is contained in:
8
lib/sms.ts
Normal file
8
lib/sms.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
type SmsPayload = {
|
||||
to: string;
|
||||
body: string;
|
||||
};
|
||||
|
||||
export async function sendSms(_payload: SmsPayload) {
|
||||
throw new Error("SMS not configured");
|
||||
}
|
||||
Reference in New Issue
Block a user