This commit is contained in:
10
backend/routes/health.py
Normal file
10
backend/routes/health.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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
|
Reference in New Issue
Block a user