d50c1c5bba
- Added .env.example for environment variable configuration. - Created app initialization files and core settings management. - Implemented API routers for reporting and transaction endpoints. - Developed transaction management service with CRUD operations. - Integrated Azure OAuth for user authentication. - Designed dashboard view with transaction filtering and display. - Added Swagger UI documentation with custom dark theme. - Created static and template files for frontend styling and layout.
6 lines
219 B
Python
6 lines
219 B
Python
from app.views.auth import router as auth_router
|
|
from app.views.dashboard import router as dashboard_router
|
|
from app.views.docs import router as docs_router
|
|
|
|
__all__ = ["auth_router", "dashboard_router", "docs_router"]
|