feat: finish phase 2 decentralized memory and storage tasks

This commit is contained in:
oib
2026-02-28 23:18:56 +01:00
parent 6c48ae64b2
commit c63259ef2c
6 changed files with 151 additions and 22 deletions

View File

@@ -29,7 +29,8 @@ from .routers import (
cache_management,
agent_identity,
global_marketplace,
cross_chain_integration
cross_chain_integration,
global_marketplace_integration
)
from .routers.ml_zk_proofs import router as ml_zk_proofs
from .routers.community import router as community_router
@@ -229,6 +230,7 @@ def create_app() -> FastAPI:
app.include_router(agent_identity, prefix="/v1")
app.include_router(global_marketplace, prefix="/v1")
app.include_router(cross_chain_integration, prefix="/v1")
app.include_router(global_marketplace_integration, prefix="/v1")
# Add Prometheus metrics endpoint
metrics_app = make_asgi_app()