9 lines
178 B
Python
9 lines
178 B
Python
|
|
"""
|
||
|
|
API module for AI Service.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from app.api.chat import router as chat_router
|
||
|
|
from app.api.health import router as health_router
|
||
|
|
|
||
|
|
__all__ = ["chat_router", "health_router"]
|