11 lines
246 B
Python
11 lines
246 B
Python
from app.config import settings
|
|
|
|
|
|
def get_headers():
|
|
return {
|
|
"Content-Type": "application/json",
|
|
"Accept": "application/json",
|
|
"api_key": settings.BANK_CALL_API_KEY,
|
|
"app_id": settings.BANK_CALL_APP_ID,
|
|
}
|