feat: wire entry point to typer CLI app
Replace stub with import of bulkgen.cli.app
This commit is contained in:
parent
1d98c0010a
commit
d38682597c
1 changed files with 7 additions and 2 deletions
9
main.py
9
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__":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue