10 lines
209 B
Python
10 lines
209 B
Python
|
from fastapi import APIRouter
|
||
|
|
||
|
from database.database import *
|
||
|
from models.request import *
|
||
|
|
||
|
router = APIRouter()
|
||
|
|
||
|
@router.get("/health", response_description="Returns 200")
|
||
|
async def healthcheck():
|
||
|
return
|