added support for headers

This commit is contained in:
Gert Wohlgemuth
2018-06-08 21:08:20 -07:00
parent f3e8d823b2
commit df33de3914
3 changed files with 24 additions and 10 deletions

6
freqtrade/aws/headers.py Normal file
View File

@@ -0,0 +1,6 @@
# Defined the default HTTP headers for function responses
__HTTP_HEADERS__ = {
'Access-Control-Allow-Origin' : '*',
'Access-Control-Allow-Credentials' : True
}