From d38682597c8f567b0d62d0fbdb902febc27e84ee Mon Sep 17 00:00:00 2001 From: Konstantin Fickel Date: Fri, 13 Feb 2026 20:14:37 +0100 Subject: [PATCH] feat: wire entry point to typer CLI app Replace stub with import of bulkgen.cli.app --- main.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index ceb833f..816f76c 100644 --- a/main.py +++ b/main.py @@ -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__":