2025-04-12 02:15:19 +02:00
|
|
|
import os
|
2025-04-12 01:37:45 +02:00
|
|
|
|
2025-04-12 02:15:19 +02:00
|
|
|
from dotenv import load_dotenv
|
2025-04-12 01:37:45 +02:00
|
|
|
|
2025-04-12 02:15:19 +02:00
|
|
|
load_dotenv()
|
|
|
|
API_URI = str(os.getenv("API_URI") or "")
|
|
|
|
API_KEY = str(os.getenv("API_KEY") or "")
|
|
|
|
API_TEAM = str(os.getenv("API_TEAM") or "")
|