Development

This commit is contained in:
Matthew Grotke 2026-05-24 23:43:06 -04:00
parent 01a463bee8
commit a4652866c3
6 changed files with 97 additions and 114 deletions

View file

@ -21,9 +21,7 @@ from action_add_account import bp as action_add_account_bp
from action_delete_account import bp as action_delete_account_bp
from action_save_preferences import bp as action_save_preferences_bp
from action_change_password import bp as action_change_password_bp
from action_clear_ddns_log import bp as action_clear_ddns_log_bp
from action_apply_ddns_providers import bp as action_apply_ddns_providers_bp
from action_apply_ddns_ip_check import bp as action_apply_ddns_ip_check_bp
from action_ddns import bp as action_ddns_bp
from api_apply_status import bp as api_apply_status_bp
app = Flask(__name__)
@ -49,9 +47,7 @@ app.register_blueprint(action_add_account_bp)
app.register_blueprint(action_delete_account_bp)
app.register_blueprint(action_save_preferences_bp)
app.register_blueprint(action_change_password_bp)
app.register_blueprint(action_clear_ddns_log_bp)
app.register_blueprint(action_apply_ddns_providers_bp)
app.register_blueprint(action_apply_ddns_ip_check_bp)
app.register_blueprint(action_ddns_bp)
app.register_blueprint(api_apply_status_bp)
def _seed_initial_account():