point-median-frontend/config.py

10 lines
139 B
Python
Raw Normal View History

2024-12-31 03:36:06 +00:00
import os
from dotenv import load_dotenv
2024-12-31 03:36:06 +00:00
load_dotenv()
2024-12-31 03:36:06 +00:00
class Settings:
BACKEND_URL = os.getenv("BACKEND_URL")
settings = Settings()