Add CompanyTable model and refactor query handling; update requirements for new dependencies

This commit is contained in:
bolade
2025-09-02 12:22:50 +01:00
parent 74931f235e
commit 65b5df3a43
19 changed files with 166 additions and 216 deletions
View File
Binary file not shown.
Binary file not shown.
+8
View File
@@ -0,0 +1,8 @@
from fastapi.routing import apirouter
router = apirouter()
@router.get("/companies")
def read_companies():
return {"message": "list of companies"}
+8
View File
@@ -0,0 +1,8 @@
from fastapi.routing import apirouter
router = apirouter()
@router.get("/investors")
def read_investors():
return {"message": "list of investors"}