mirror of
https://github.com/quay/quay.git
synced 2026-01-27 18:42:52 +03:00
11 lines
260 B
Python
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")
|