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

This commit is contained in:
2025-11-24 18:02:46 +03:00
parent c862c4dd35
commit 0158acb9b9
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
from logging import getLogger
from fastapi import APIRouter
logger = getLogger(__name__)
router = APIRouter(
prefix='/vitacore',
tags=[
'Витакор',
],
)
@router.post('/hospComplaint')
async def callback():
pass