
- Implemented complete authentication system with JWT tokens - Created user management with registration and profile endpoints - Built client management with full CRUD operations - Developed invoice system with line items and automatic calculations - Set up SQLite database with proper migrations using Alembic - Added health monitoring and API documentation - Configured CORS for cross-origin requests - Included comprehensive README with usage examples
4 lines
274 B
Python
4 lines
274 B
Python
from .user import UserCreate, UserResponse, UserLogin, Token
|
|
from .client import ClientCreate, ClientUpdate, ClientResponse
|
|
from .invoice import InvoiceCreate, InvoiceUpdate, InvoiceResponse
|
|
from .invoice_item import InvoiceItemCreate, InvoiceItemUpdate, InvoiceItemResponse |