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

11 lines
208 B
Python
Raw Permalink Normal View History

from json import load
from telegram.ext import Updater
2020-11-07 15:15:44 +01:00
config = load(open("config.json"))
updater = Updater(token=config["bot_token"], use_context=True)
import commands
import callbackQuery
import message