Development
This commit is contained in:
parent
68b98102cf
commit
a78df48804
7 changed files with 33 additions and 29 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import os, json, sys
|
||||
from flask import Flask
|
||||
from view_page import bp as view_page_bp
|
||||
from action_general import bp as action_general_bp
|
||||
from action_actions import bp as action_actions_bp
|
||||
from action_networkinterfaces import bp as action_networkinterfaces_bp
|
||||
from action_upstreamdns import bp as action_upstreamdns_bp
|
||||
from action_apply_mdns import bp as action_apply_mdns_bp
|
||||
|
|
@ -27,7 +27,7 @@ from api_apply_health import bp as api_apply_health_bp
|
|||
app = Flask(__name__)
|
||||
app.secret_key = os.environ.get('SECRET_KEY', os.urandom(24))
|
||||
app.register_blueprint(view_page_bp)
|
||||
app.register_blueprint(action_general_bp)
|
||||
app.register_blueprint(action_actions_bp)
|
||||
app.register_blueprint(action_networkinterfaces_bp)
|
||||
app.register_blueprint(action_upstreamdns_bp)
|
||||
app.register_blueprint(action_apply_mdns_bp)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue