The backend component to interface with the smart contract.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

8 rader
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"])