Add initial CLI support

This commit is contained in:
Andrew Mulbrook 2026-03-21 22:25:32 -05:00
parent e16d67e2f8
commit 22a9c68611
14 changed files with 168 additions and 26 deletions

5
trovedb/cli/__main__.py Normal file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env python3
"""Command-line interface for trovedb"""
from ._cli_main import main
main()