UPNISO_API / billing.py
eishit32's picture
Create billing.py
818d6ef verified
Raw
History Blame Contribute Delete
141 Bytes
PLANS = {
"pro": {"limit": 50000},
"ultra": {"limit": 500000}
}
def get_plan(api_key):
# Replace with DB later
return "pro"