Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
teleexit/bot/__init__.py
2020-11-07 15:15:44 +01:00

10 lines
208 B
Python

from json import load
from telegram.ext import Updater
config = load(open("config.json"))
updater = Updater(token=config["bot_token"], use_context=True)
import commands
import callbackQuery
import message