
- Set up project structure with FastAPI framework - Implement database models using SQLAlchemy - Create Alembic migrations for database schema - Build CRUD endpoints for Items resource - Add health check endpoint - Include API documentation with Swagger and ReDoc - Update README with project documentation
15 lines
213 B
Python
15 lines
213 B
Python
from app.crud.item import (
|
|
get_item,
|
|
get_items,
|
|
create_item,
|
|
update_item,
|
|
delete_item
|
|
)
|
|
|
|
__all__ = [
|
|
"get_item",
|
|
"get_items",
|
|
"create_item",
|
|
"update_item",
|
|
"delete_item"
|
|
] |