Files
77th_eventcalenderntfy/app/sendNotification.ts
chikovanreuden 2fb5f48a54 inital commit
2025-10-20 02:05:08 +02:00

15 lines
334 B
TypeScript

import * as Bun from "bun";
export function sendNotification(title: string, body: string, click?: string) {
const command = [
"python",
"./app/notification.py",
`--title=${title}`,
`--body=${body}`,
];
if (click) {
command.push(`--click=${click}`);
}
Bun.spawn(command);
}