Organization blackline.api.v1.routers.organization logger = logging.getLogger(__name__) module-attribute router = APIRouter(prefix='', tags=['organization'], responses={404: {'description': 'Not found'}}) module-attribute root() async Source code in /opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/blackline/api/v1/routers/organization.py 16 17 18@router.get("/") async def root(): return {"message": "Hello Organization"}