setup first files for new program

This commit is contained in:
Nayan
2025-08-26 23:59:51 +00:00
parent 225ea54402
commit 259aa04bdb
2 changed files with 23 additions and 0 deletions

12
main.py Normal file
View File

@@ -0,0 +1,12 @@
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"])