feat: wire entry point to typer CLI app

Replace stub with import of bulkgen.cli.app
This commit is contained in:
Konstantin Fickel 2026-02-13 20:14:37 +01:00
parent 1d98c0010a
commit d38682597c
Signed by: kfickel
GPG key ID: A793722F9933C1A5

View file

@ -1,5 +1,10 @@
def main():
print("Hello from bulkgen!")
"""Entry point for the bulkgen CLI."""
from bulkgen.cli import app
def main() -> None:
app()
if __name__ == "__main__":