The backend component to interface with the smart contract.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

2 ay önce
12345678
  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"])