From 489ddfe2a9eb8258b7423a1ea78a7b1cdec5dc3a Mon Sep 17 00:00:00 2001 From: Untone Date: Sat, 2 Dec 2023 08:45:25 +0300 Subject: [PATCH] minor-fixes --- README.md | 1 + main.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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