remove unused fileio code

This commit is contained in:
phernandez
2024-12-22 09:22:02 -06:00
parent c97b678dc6
commit 054cea976c
6 changed files with 17 additions and 222 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
"""Main CLI entry point for basic-memory"""
import typer
from . import migrate
app = typer.Typer()
app.add_typer(migrate.app, name="migrate")
# app.add_typer(migrate.app, name="migrate")
if __name__ == "__main__":
app()
if __name__ == "__main__": # pragma: no cover
app()