feat: add watch to mcp process (#83)

This commit is contained in:
Paul Hernandez
2025-04-06 18:33:10 -05:00
committed by GitHub
parent 617e60bda4
commit 00c8633cfc
6 changed files with 92 additions and 24 deletions
-7
View File
@@ -1,11 +1,7 @@
import asyncio
from typing import Optional
import typer
from basic_memory import db
from basic_memory.config import config
def version_callback(value: bool) -> None:
"""Show version and exit."""
@@ -58,9 +54,6 @@ def app_callback(
config = new_config
# Run database migrations
asyncio.run(db.run_migrations(config))
# Register sub-command groups
import_app = typer.Typer(help="Import data from various sources")
app.add_typer(import_app, name="import")