atlantis-realtime / cbh /api /coach /__init__.py
brestok's picture
init
eda70df
raw
history blame contribute delete
176 Bytes
"""
Coach module.
"""
from fastapi import APIRouter
coach_router = APIRouter(prefix="/api/agent", tags=["coach"])
from . import views # noqa: F401 # pylint: disable=C0413