We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d456129 + 63af046 commit 57826b4Copy full SHA for 57826b4
.gitignore
@@ -98,3 +98,4 @@ __pycache__
98
99
# Keep logrotated files out of git
100
logs/*.log*
101
+.config.py
main.py
@@ -11,6 +11,7 @@
11
from telegram.inline.inlinekeyboardbutton import InlineKeyboardButton
12
from telegram.inline.inlinekeyboardmarkup import InlineKeyboardMarkup
13
14
+from config import BOT_TOKEN
15
from database.db_wrapper import DBwrapper
16
from database.statistics import get_user_stats
17
from game.blackJackGame import BlackJackGame
@@ -21,8 +22,6 @@
21
22
23
__author__ = 'Rico'
24
-BOT_TOKEN = "<your_bot_token>"
25
-
26
logdir_path = os.path.dirname(os.path.abspath(__file__))
27
logfile_path = os.path.join(logdir_path, "logs", "bot.log")
28
0 commit comments