We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 127c613 commit 186ea10Copy full SHA for 186ea10
simple_backend/src/task_tracker/main.py
@@ -1,6 +1,8 @@
1
from fastapi import FastAPI
2
from fastapi import HTTPException
3
-from storage_gist import GistStorage
+from storage_gist import GistStorage
4
+from dotenv import load_dotenv
5
+load_dotenv()
6
app = FastAPI()
7
storage = GistStorage()
8
# we display a list of all received tasks.
0 commit comments