From 437bbfd0a6bb4057e6cc3ee7e8a85cb0ac4fba1f Mon Sep 17 00:00:00 2001 From: Valentin CZERYBA Date: Tue, 17 Oct 2023 21:44:49 +0200 Subject: [PATCH] add import os --- app/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/main.py b/app/main.py index 635876b..a7e42e0 100644 --- a/app/main.py +++ b/app/main.py @@ -3,6 +3,8 @@ from fastapi import FastAPI from .routers import users, token, mail from .dependencies import user_add +import os + app = FastAPI() app.include_router(users.router)