
- Set up project structure with modular organization - Implement database models for users, organizations, clients, invoices - Create Alembic migration scripts for database setup - Implement JWT-based authentication and authorization - Create API endpoints for users, organizations, clients, invoices - Add PDF generation for invoices using ReportLab - Add comprehensive documentation in README
6 lines
226 B
Python
6 lines
226 B
Python
from app.crud.crud_user import user
|
|
from app.crud.crud_organization import organization
|
|
from app.crud.crud_client import client
|
|
from app.crud.crud_invoice import invoice
|
|
|
|
__all__ = ["user", "organization", "client", "invoice"] |