1
0
mirror of https://github.com/quay/quay.git synced 2026-01-26 06:21:37 +03:00
Files
quay/secscan.py
2019-12-02 12:23:08 -05:00

11 lines
260 B
Python

# NOTE: Must be before we import or call anything that may be synchronous.
from gevent import monkey
monkey.patch_all()
from app import app as application
from endpoints.secscan import secscan
application.register_blueprint(secscan, url_prefix="/secscan")