Added healthchecks
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2023-03-13 13:37:23 +01:00
parent 09801b75d0
commit c0005f38d5
4 changed files with 18 additions and 2 deletions

10
backend/routes/health.py Normal file
View 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