The backend component to interface with the smart contract.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
247 B

  1. from fastapi import APIRouter
  2. from app.api.v1.endpoints import issue, user
  3. api_router = APIRouter()
  4. api_router.include_router(issue.router, prefix="/issues", tags=["users"])
  5. api_router.include_router(user.router, prefix="/user", tags=["users"])