Archived
refactor(bot): modularize bot code
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
load_dotenv()
|
||||
|
||||
API_TOKEN = os.getenv("API_TOKEN")
|
||||
ADMIN_ID = int(os.getenv("ADMIN_ID")) # type: ignore[arg-type]
|
||||
ASF_URL = os.getenv("ASF_URL")
|
||||
ASF_PASSWORD = os.getenv("ASF_PASSWORD")
|
||||
Reference in New Issue
Block a user