From 59c1764b09d1ea68f52704ff195fa05b1c91d941 Mon Sep 17 00:00:00 2001 From: KOSASIH Date: Sun, 1 Dec 2024 20:22:28 +0700 Subject: [PATCH] Create notification.py --- src/payment/notification.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/payment/notification.py diff --git a/src/payment/notification.py b/src/payment/notification.py new file mode 100644 index 000000000..1f04318b0 --- /dev/null +++ b/src/payment/notification.py @@ -0,0 +1,4 @@ +class Notification: + def send_notification(self,recipient, message): + # Here you can implement the logic to send notifications via email, SMS, or any other method + print(f"Notification sent to {recipient}: {message}")