Патч
All checks were successful
Build And Push / publish (push) Successful in 5m5s

This commit is contained in:
2025-11-11 12:58:58 +03:00
parent b602b75234
commit cf1324633d
9 changed files with 82 additions and 45 deletions

View File

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