-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.py
More file actions
21 lines (19 loc) · 770 Bytes
/
config.py
File metadata and controls
21 lines (19 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
from os import getenv
from dotenv import load_dotenv
load_dotenv()
admins = {}
AUDIO_CALL = {}
VIDEO_CALL = {}
ADMIN = int(os.getenv('ADMIN',1956381927))
CHANNEL = int(os.getenv('CHANNEL',12345))
API_ID = int(os.getenv("API_ID", "6"))
API_HASH = os.getenv("API_HASH", "eb06d4abfb49dc3eeb1aeb98ae0f581e")
BOT_USERNAME = os.getenv("BOT_USERNAME", "VcVideoRobot")
ASSISTANT_NAME = os.getenv("ASSISTANT_NAME", "NellyX VC Player")
SUPPORT_GROUP = os.getenv("SUPPORT_GROUP", "IntimacyfolkZ")
UPDATES_CHANNEL = os.getenv("UPDATES_CHANNEL", "Intimacyfolks")
SOURCE_CODE = os.getenv("SOURCE_CODE", "github.com/daveh566/VideoPlayer")
BOT_TOKEN = os.getenv("BOT_TOKEN")
SESSION_NAME = os.getenv("SESSION_NAME")
SUDO_USERS = list(map(int, getenv("SUDO_USERS").split()))