
- Set up project structure with FastAPI - Implement user and account management - Add send and receive money functionality - Set up transaction processing system - Add JWT authentication - Configure SQLAlchemy with SQLite - Set up Alembic for database migrations - Create comprehensive API documentation
11 lines
523 B
Python
11 lines
523 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1 import health, users, login, accounts, transactions
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(health.router, prefix="/health", tags=["health"])
|
|
api_router.include_router(login.router, prefix="/login", tags=["login"])
|
|
api_router.include_router(users.router, prefix="/users", tags=["users"])
|
|
api_router.include_router(accounts.router, prefix="/accounts", tags=["accounts"])
|
|
api_router.include_router(transactions.router, prefix="/transactions", tags=["transactions"]) |