shapi / routers /__init__.py
sh20raj's picture
Refactor app.py to include user and product routers, update greeting message, and clean up commented code.
ef014d1
raw
history blame contribute delete
137 Bytes
from .users import router as users_router
from .products import router as products_router
__all__ = ["users_router", "products_router"]