Add service model, route, and logic
This commit is contained in:
parent
4fc1f58f30
commit
e72ec07c45
4 changed files with 108 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ from fastapi import FastAPI
|
|||
|
||||
from app.config import settings
|
||||
from app.database import create_database
|
||||
from app.routers import project_route
|
||||
from app.routers import project_route, service_route
|
||||
|
||||
|
||||
@asynccontextmanager
|
||||
|
|
@ -23,3 +23,4 @@ app = FastAPI(
|
|||
|
||||
|
||||
app.include_router(project_route.router)
|
||||
app.include_router(service_route.router)
|
||||
|
|
|
|||
Loading…
Reference in a new issue