16 lines
307 B
Python
16 lines
307 B
Python
"""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"
|
|
})
|