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/main.py
2020-11-07 15:15:44 +01:00

17 lines
373 B
Python

import logging
from bot import updater
local = {"first_name": "Firstname",
"last_name": "Lastname",
"birth_date": "Birth date",
"birth_city": "Birth city",
"address": "Address"}
messages = {}
reasons = {}
logging.basicConfig(format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO)
updater.start_polling()