diff --git a/README.md b/README.md index 73699d8..fdf659d 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ - uvicorn ASGI -> WSGI - starlette ASGI server - boto3 s3 client +- авторизацию через заголовок запроса #### Переменные среды diff --git a/main.py b/main.py index e62d46b..dd8e4ea 100644 --- a/main.py +++ b/main.py @@ -66,4 +66,5 @@ app = Starlette(debug=True, routes=routes) if __name__ == "__main__": import uvicorn - uvicorn.run(app, host='0.0.0.0', port=80) \ No newline at end of file + uvicorn.run(app, host='0.0.0.0', port=80) + \ No newline at end of file