BDAi-By-Azad / users.py
bdaibyazad's picture
Create users.py
f69b5af verified
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"
})