16 lines
353 B
Plaintext
16 lines
353 B
Plaintext
# Telegram bot token, as [BotFather](http://tg.me/BotFather) sends it.
|
|
TG_TOKEN = '<getthisfrombotfather>'
|
|
|
|
# Dictionary from Telegram user ID to their via API access token.
|
|
USER_TOKENS = {
|
|
12345678: 'access_token'
|
|
}
|
|
|
|
# Dictionary from Telegram to via group ID.
|
|
VIA_GROUPS = {
|
|
-1020304050: 12,
|
|
}
|
|
|
|
VIA_SCHEME = 'http'
|
|
VIA_HOST = 'localhost:5000'
|