Skip to content

Commit d281efa

Browse files
authoredMar 21, 2025··
feat: added src. to main.py (#43)
* scr/main deleted * updates to developer journal, deleted documentation file * added src. to main.py src modules to satisfy vscode
1 parent 234eee4 commit d281efa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from fastapi import FastAPI
22
from fastapi.responses import RedirectResponse
3-
from routers.health import health_router
4-
from routers.mtcars import data_output
3+
from src.routers.health import health_router
4+
from src.routers.mtcars import data_output
55
import uvicorn
66
import tomllib
77

1 commit comments

Comments
 (1)

github-actions[bot] commented on Mar 21, 2025

@github-actions[bot]

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/models
   outputs.py14140%1–17
src/routers
   health.py6183%22
   mtcars.py14140%1–37
src/services
   mtcars.py18180%1–28
TOTAL554715% 

Tests Skipped Failures Errors Time
1 0 💤 0 ❌ 1 🔥 1.741s ⏱️
Please sign in to comment.