refactor: restructure project layout

This commit is contained in:
Felix Spöttel
2023-01-07 11:35:31 +01:00
parent e41c07fd4b
commit 4fa1d5c0da
26 changed files with 75 additions and 50 deletions

View File

@@ -2,8 +2,8 @@ from typing import Dict
from fastapi.testclient import TestClient
from app.config import settings
from app.main import app
from app.shared.config import settings
from app.web.main import app
client = TestClient(app)