10 lines
172 B
Python
10 lines
172 B
Python
|
import os
|
||
|
import logging.config
|
||
|
|
||
|
from app import app as application
|
||
|
|
||
|
from endpoints.secscan import secscan
|
||
|
|
||
|
|
||
|
application.register_blueprint(secscan, url_prefix='/secscan')
|