Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
·
e2bf200
1
Parent(s):
f9da48d
Update vars.py
Browse files- Powers/vars.py +3 -5
Powers/vars.py
CHANGED
|
@@ -41,13 +41,12 @@ class Config:
|
|
| 41 |
AuDD_API = config("AuDD_API",default=None)
|
| 42 |
RMBG_API = config("RMBG_API",default=None)
|
| 43 |
DB_URI = config("DB_URI", default="")
|
| 44 |
-
DB_NAME = config("DB_NAME", default="")
|
| 45 |
BDB_URI = config("BDB_URI",default=None)
|
| 46 |
NO_LOAD = config("NO_LOAD", default="").split()
|
| 47 |
PREFIX_HANDLER = config("PREFIX_HANDLER", default="/").split()
|
| 48 |
SUPPORT_GROUP = config("SUPPORT_GROUP", default="gojo_bots_network")
|
| 49 |
SUPPORT_CHANNEL = config("SUPPORT_CHANNEL", default="gojo_bots_network")
|
| 50 |
-
VERSION = config("VERSION", default="v2.0")
|
| 51 |
WORKERS = int(config("WORKERS", default=16))
|
| 52 |
TIME_ZONE = config("TIME_ZONE",default='Asia/Kolkata')
|
| 53 |
BOT_USERNAME = ""
|
|
@@ -67,15 +66,14 @@ class Development:
|
|
| 67 |
OWNER_ID = 1344569458 # Your telegram user id defult to mine
|
| 68 |
MESSAGE_DUMP = -100 # Your Private Group ID for logs
|
| 69 |
DEV_USERS = []
|
| 70 |
-
SUDO_USERS = [
|
| 71 |
WHITELIST_USERS = []
|
| 72 |
DB_URI = "" # Your mongo DB URI
|
| 73 |
DB_NAME = "" # Your DB name
|
| 74 |
NO_LOAD = []
|
| 75 |
GENIUS_API_TOKEN = ""
|
| 76 |
-
AuDD_API = ""
|
| 77 |
RMBG_API = ""
|
| 78 |
-
PREFIX_HANDLER = ["!", "/"]
|
| 79 |
SUPPORT_GROUP = "SUPPORT_GROUP"
|
| 80 |
SUPPORT_CHANNEL = "SUPPORT_CHANNEL"
|
| 81 |
VERSION = "VERSION"
|
|
|
|
| 41 |
AuDD_API = config("AuDD_API",default=None)
|
| 42 |
RMBG_API = config("RMBG_API",default=None)
|
| 43 |
DB_URI = config("DB_URI", default="")
|
| 44 |
+
DB_NAME = config("DB_NAME", default="gojo_satarou")
|
| 45 |
BDB_URI = config("BDB_URI",default=None)
|
| 46 |
NO_LOAD = config("NO_LOAD", default="").split()
|
| 47 |
PREFIX_HANDLER = config("PREFIX_HANDLER", default="/").split()
|
| 48 |
SUPPORT_GROUP = config("SUPPORT_GROUP", default="gojo_bots_network")
|
| 49 |
SUPPORT_CHANNEL = config("SUPPORT_CHANNEL", default="gojo_bots_network")
|
|
|
|
| 50 |
WORKERS = int(config("WORKERS", default=16))
|
| 51 |
TIME_ZONE = config("TIME_ZONE",default='Asia/Kolkata')
|
| 52 |
BOT_USERNAME = ""
|
|
|
|
| 66 |
OWNER_ID = 1344569458 # Your telegram user id defult to mine
|
| 67 |
MESSAGE_DUMP = -100 # Your Private Group ID for logs
|
| 68 |
DEV_USERS = []
|
| 69 |
+
SUDO_USERS = []
|
| 70 |
WHITELIST_USERS = []
|
| 71 |
DB_URI = "" # Your mongo DB URI
|
| 72 |
DB_NAME = "" # Your DB name
|
| 73 |
NO_LOAD = []
|
| 74 |
GENIUS_API_TOKEN = ""
|
|
|
|
| 75 |
RMBG_API = ""
|
| 76 |
+
PREFIX_HANDLER = ["!", "/","$"]
|
| 77 |
SUPPORT_GROUP = "SUPPORT_GROUP"
|
| 78 |
SUPPORT_CHANNEL = "SUPPORT_CHANNEL"
|
| 79 |
VERSION = "VERSION"
|