Files
minecraft-server-discord-bot/main.py
2025-08-26 23:59:51 +00:00

12 lines
243 B
Python

import os
from dotenv import load_dotenv
from fsio import read_config_file, read_servers_file
load_dotenv()
TOKEN = os.getenv('DISCORD_TOKEN')
BASE_PATH = os.getenv('BASE_PATH', './')
print(read_config_file("config.json")["chat_channel"])