discord_peak_bot/app/config.py

11 lines
258 B
Python
Raw Permalink Normal View History

2024-08-03 11:18:28 +00:00
import json
import os
class Config:
@staticmethod
def load_config():
env = os.getenv('ENV', 'dev')
config_file = f"config/config.{env}.json"
with open(config_file, "r", encoding="utf-8") as f:
return json.load(f)