Chore: Pushing changes to migrate from windows/wsl to fedora
This commit is contained in:
@@ -8,6 +8,8 @@ from app.core.config import settings
|
||||
from typing import Union
|
||||
from fastapi import FastAPI
|
||||
from app.api.clients.endpoints import router as clients_router
|
||||
from app.api.suppliers.endpoints import router as supplier_router
|
||||
from app.api.products.endpoints import router as product_router
|
||||
|
||||
|
||||
app = FastAPI(
|
||||
@@ -23,3 +25,5 @@ def read_root():
|
||||
return {"Hello": "World"}
|
||||
|
||||
app.include_router(clients_router, tags=["clients"])
|
||||
app.include_router(supplier_router, tags=["suppliers"])
|
||||
app.include_router(product_router, tags=["products"])
|
||||
|
||||
Reference in New Issue
Block a user