10 lines
208 B
Python
10 lines
208 B
Python
import os
|
|
from dotenv import load_dotenv
|
|
|
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
|
load_dotenv()
|
|
|
|
class Config:
|
|
SECRET: str = os.environ.get("SECRET")
|
|
API_URL: str = os.environ.get("API_URL")
|