register test command

This commit is contained in:
aronwk-aaron 2023-11-09 23:56:32 -06:00
parent 7ca62fe478
commit a578f8a53c

View File

@ -19,7 +19,8 @@ from app.commands import (
load_property, load_property,
gen_image_cache, gen_image_cache,
gen_model_cache, gen_model_cache,
fix_clone_ids fix_clone_ids,
remove_buffs
) )
from app.models import Account, AccountInvitation, AuditLog 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_image_cache)
app.cli.add_command(gen_model_cache) app.cli.add_command(gen_model_cache)
app.cli.add_command(fix_clone_ids) app.cli.add_command(fix_clone_ids)
app.cli.add_command(remove_buffs)
register_logging(app) register_logging(app)
register_settings(app) register_settings(app)