dialogflowAPI / app /core /config.py
OnlyBiggg
Initial commit
e2b74e4
raw
history blame contribute delete
213 Bytes
import os
from dotenv import load_dotenv
load_dotenv() # Load biến môi trường từ file .env
class Settings:
API_BASE_URL = os.getenv("API_BASE_URL") # API gốc (backend dev)
settings = Settings()