hokusai/main.py
Konstantin Fickel d38682597c
feat: wire entry point to typer CLI app
Replace stub with import of bulkgen.cli.app
2026-02-13 20:14:37 +01:00

11 lines
140 B
Python

"""Entry point for the bulkgen CLI."""
from bulkgen.cli import app
def main() -> None:
app()
if __name__ == "__main__":
main()