| # database/notifications.py | |
| # NEW FILE | |
| """ | |
| Notifications database operations. | |
| Pure in-memory via MemoryDB. No local files. | |
| """ | |
| from memory_db import get_db | |
| def init_notifications_db(): | |
| db = get_db() | |
| count = db.count('notifications') | |
| print(f" ✅ Notifications DB ready: {count} records in memory") |