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}")