Files
HospitalAssistantBackend/src/apps/remd/v1/router.py
Miwory cf1324633d
All checks were successful
Build And Push / publish (push) Successful in 5m5s
Патч
2025-11-11 12:58:58 +03:00

16 lines
220 B
Python

from logging import getLogger
from fastapi import APIRouter
logger = getLogger(__name__)
router = APIRouter(
prefix='/remd',
tags=[
'REMD',
],
)
@router.get('/callback')
async def callback(): ...