diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3072e6f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.pyc +*.pyo \ No newline at end of file diff --git a/echo-master/.gitignore b/echo-master/.gitignore new file mode 100644 index 0000000..3072e6f --- /dev/null +++ b/echo-master/.gitignore @@ -0,0 +1,2 @@ +*.pyc +*.pyo \ No newline at end of file diff --git a/echo-master/echo_api/__pycache__/api.cpython-38.pyc b/echo-master/echo_api/__pycache__/api.cpython-38.pyc index 583133a..029110f 100644 Binary files a/echo-master/echo_api/__pycache__/api.cpython-38.pyc and b/echo-master/echo_api/__pycache__/api.cpython-38.pyc differ diff --git a/echo-master/echo_api/api.py b/echo-master/echo_api/api.py index 88e9a96..597fc7a 100644 --- a/echo-master/echo_api/api.py +++ b/echo-master/echo_api/api.py @@ -1,7 +1,7 @@ import flask -from flask import abort, Flask -from flask_restful import Resource, Api, request +from flask import Flask +from flask_restful import Resource, Api, request, abort from flask_cors import CORS, cross_origin import echo_api.auth as Auth