tillu-daemon / app /api /__init__.py
tillu-AI's picture
upload app/api/__init__.py
0dea142 verified
raw
history blame contribute delete
284 Bytes
"""
TILLU API Routes
"""
from .gateway import router as gateway_router
from .memory import router as memory_router
from .health import router as health_router
from .events import router as events_router
__all__ = ["gateway_router", "memory_router", "health_router", "events_router"]