File size: 213 Bytes
e2b74e4
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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()