7 lines
171 B
Python
7 lines
171 B
Python
from tgbot import TelegramBot
|
|
import config
|
|
|
|
if __name__ == "__main__":
|
|
telegram_bot = TelegramBot(config.TELEGRAM_TOKEN, config.DB_PATH)
|
|
telegram_bot.run()
|