You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
647 B
17 lines
647 B
from flask import Flask
|
|
from apps.views import testview, basicFuncViews, histogramViews, segmentationViews, smoothSharpenViews, repairViews, \
|
|
morphologicalViews, filesViews, styleTransferViews
|
|
|
|
app = Flask(__name__)
|
|
app.config['JSON_AS_ASCII'] = False
|
|
|
|
app.register_blueprint(testview.app)
|
|
app.register_blueprint(filesViews.app)
|
|
app.register_blueprint(basicFuncViews.app)
|
|
app.register_blueprint(histogramViews.app)
|
|
app.register_blueprint(segmentationViews.app)
|
|
app.register_blueprint(smoothSharpenViews.app)
|
|
app.register_blueprint(morphologicalViews.app)
|
|
app.register_blueprint(repairViews.app)
|
|
app.register_blueprint(styleTransferViews.app)
|