first commit
This commit is contained in:
11
functions/set_Variables.py
Normal file
11
functions/set_Variables.py
Normal 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')
|
||||
}
|
||||
Reference in New Issue
Block a user