From a578f8a53c57ca45c374fd4fcb125c8ed1c8de16 Mon Sep 17 00:00:00 2001 From: aronwk-aaron Date: Thu, 9 Nov 2023 23:56:32 -0600 Subject: [PATCH] register test command --- app/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/__init__.py b/app/__init__.py index 67a9ac1..e14672a 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -19,7 +19,8 @@ from app.commands import ( load_property, gen_image_cache, gen_model_cache, - fix_clone_ids + fix_clone_ids, + remove_buffs ) from app.models import Account, AccountInvitation, AuditLog @@ -95,6 +96,7 @@ def create_app(): app.cli.add_command(gen_image_cache) app.cli.add_command(gen_model_cache) app.cli.add_command(fix_clone_ids) + app.cli.add_command(remove_buffs) register_logging(app) register_settings(app)