Add files via upload

This commit is contained in:
Eduard Prigoana 2025-01-02 01:08:58 +02:00 committed by GitHub
parent 8e53f0038d
commit f216cf05c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 29565 additions and 0 deletions

View file

@ -0,0 +1,16 @@
"""app.healthcheck.healthcheck
Module that deals with HealthCheck route."""
import logging
from flask import jsonify
log = logging.getLogger(__name__)
def route():
"""Returns health information"""
log.info("Healthcheck was requested")
return jsonify({
"message": "type shit"
})