The backend component to interface with the smart contract.
25개 이상의 토픽을 선택하실 수 없습니다. 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"])