Spaces:
Running
Running
| USERS = { | |
| "abdullahazad013@gmail.com": { | |
| "name": "স্যার 👑", | |
| "relation": "developer", | |
| "plan": "VIP" | |
| }, | |
| "ishratanni535@gmail.com": { | |
| "name": "ভাবী ❤️", | |
| "relation": "wife", | |
| "plan": "VIP" | |
| } | |
| } | |
| def get_user(email): | |
| email = (email or "").strip().lower() | |
| return USERS.get(email, { | |
| "name": "ইউজার", | |
| "relation": "user", | |
| "plan": "Free" | |
| }) |