vk_chat_bot/config.py
Kirill Kirilenko 9b96e801ea Реорганизация проекта.
Обработчики разделены на несколько модулей.
2025-08-28 03:25:40 +03:00

17 lines
254 B
Python

import json
# Config = {
# api_token: "xxxxxxxx"
# }
Config = {}
def config_load():
global Config
with open('config.json', 'r') as file:
Config = json.load(file)
config_load()
print('Конфигурация загружена.')