1
0
mirror of https://github.com/quay/quay.git synced 2025-04-18 10:44:06 +03:00
quay/singletons/app.py
2022-06-16 18:44:13 +02:00

11 lines
281 B
Python

from _init import TEMPLATE_DIR
from flask import Flask
# _app is a bare Flask object. Please don't use it directly from this package
# unless you need an uninitialized object.
_app = Flask(__name__, template_folder=TEMPLATE_DIR)
def app_context():
return _app.app_context()