eishit32 commited on
Commit
818d6ef
·
verified ·
1 Parent(s): 0777a8d

Create billing.py

Browse files
Files changed (1) hide show
  1. billing.py +8 -0
billing.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ PLANS = {
2
+ "pro": {"limit": 50000},
3
+ "ultra": {"limit": 500000}
4
+ }
5
+
6
+ def get_plan(api_key):
7
+ # Replace with DB later
8
+ return "pro"