More files

This commit is contained in:
2025-05-24 03:23:15 -05:00
parent 558dcfe81e
commit 6de9729329
23 changed files with 338 additions and 272 deletions

View File

@ -1,2 +1,10 @@
from .seed import seed_admin
from .preload import preload_data
from .seed import preload_data, seed_admin
cli_commands = [
preload_data,
seed_admin
]
def register_cli(app):
for command in cli_commands:
app.cli.add_command(command)