
- Create User model and database schema - Add JWT authentication with secure password hashing - Create authentication endpoints for registration and login - Update invoice routes to require authentication - Ensure users can only access their own invoices - Update documentation in README.md
2 lines
112 B
Python
2 lines
112 B
Python
from app.models.invoice import Invoice, InvoiceItem # noqa: F401
|
|
from app.models.user import User # noqa: F401 |