Create notification.py
Browse files- notification.py +3 -0
notification.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def send_notification(caller_id, message):
|
| 2 |
+
# Logic to send notification to the caller
|
| 3 |
+
print(f"Sending message to {caller_id}: {message}")
|