SentimentScope / routes /__init__.py
Jodinho's picture
fix: tool schema bugs + route architecture v1
94ea10a
Raw
History Blame Contribute Delete
180 Bytes
"""
Routes package — exports all versioned API routers.
Mount order matters: more specific prefixes first.
"""
from routes.v1 import router as v1_router
__all__ = ["v1_router"]