first commit

This commit is contained in:
2025-10-12 04:14:31 +02:00
commit 9a27cc175c
10 changed files with 190 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from dotenv import load_dotenv
import os
def set_variables():
load_dotenv()
return {
"base_url": os.getenv('BASE_URL'),
"token_id": os.getenv('TOKEN_ID'),
"token_secret": os.getenv('TOKEN_SECRET'),
"backup_dir": os.getenv('BACKUP_DIR')
}