# -*- coding: utf-8 -*- """ This blueprint contains common reusable pieces of functionality of the application. """ from flask import Blueprint, jsonify from src.utils import auth as auth_util blueprint = Blueprint("core", __name__) @blueprint.route("/hello", methods=["GET"]) @auth_util.no_authorize def basic_health_check(): """Check health of the application.""" return jsonify({"status": "ok"})