Skip to content

Commit 5c28034

Browse files
authored
Update config.py
1 parent c15a2c3 commit 5c28034

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

config.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
import os
22
import logging
33
from logging.handlers import RotatingFileHandler
4-
4+
#Bot token @Botfather
55
TG_BOT_TOKEN = os.environ.get("TG_BOT_TOKEN", "")
6-
6+
#Your API ID from my.telegram.org
77
APP_ID = int(os.environ.get("APP_ID", ""))
8-
8+
#Your API Hash from my.telegram.org
99
API_HASH = os.environ.get("API_HASH", "")
10-
10+
#Your channel Id
1111
CHANNEL_ID = int(os.environ.get("CHANNEL_ID", ""))
12-
12+
#OWNER ID
1313
OWNER_ID = int(os.environ.get("OWNER_ID", ""))
1414

1515
TG_BOT_WORKERS = int(os.environ.get("TG_BOT_WORKERS", "4"))
16-
16+
#start message
1717
START_MSG = os.environ.get("START_MESSAGE", "Hello {firstname}\n\nI can store private files in Specified Channel and other users can access it from special link.")
1818
try:
1919
ADMINS=[]

0 commit comments

Comments
 (0)