From 46c401d82c5efb920ed84e3fd84b0e136b2bf304 Mon Sep 17 00:00:00 2001 From: Sijmen Schoon Date: Fri, 10 Nov 2017 17:25:56 +0100 Subject: [PATCH] Create config example --- config.py.example | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 config.py.example diff --git a/config.py.example b/config.py.example new file mode 100644 index 0000000..b510948 --- /dev/null +++ b/config.py.example @@ -0,0 +1,11 @@ +TG_TOKEN = '' + +# 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, +} \ No newline at end of file