From 50d4f066e308a865dca768c818935bc2bc63018b Mon Sep 17 00:00:00 2001 From: fleaz Date: Fri, 24 Feb 2023 00:05:55 +0100 Subject: [PATCH] fixup! Added 'restart' to start over --- schmeckels/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/schmeckels/cli.py b/schmeckels/cli.py index 2e22fe5..5ab69ed 100644 --- a/schmeckels/cli.py +++ b/schmeckels/cli.py @@ -8,7 +8,7 @@ from sqlalchemy import create_engine from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import sessionmaker -from schmeckels import autosort, importer, info, models, serve, sort, validate, stats +from schmeckels import autosort, importer, info, models, serve, sort, validate, stats, restart from schmeckels.helper import build_database_filename, build_rules_filename, get_data_dir __version__ = "0.0.1" @@ -53,4 +53,5 @@ def main(): cli.add_command(validate.command) cli.add_command(info.command) cli.add_command(stats.command) + cli.add_command(restart.command) cli()