vk_chat_bot/config.py
Kirill Kirilenko 0894e3b775 Реорганизация проекта.
Обработчики разделены на несколько модулей.
2025-08-28 03:21:48 +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('Конфигурация загружена.')