10 lines
168 B
Python
10 lines
168 B
Python
import requests
|
|
from flask import current_app
|
|
|
|
|
|
def get_headers():
|
|
return {
|
|
"Content-Type": "application/json",
|
|
"Accept": "application/json",
|
|
}
|