hokusai/main.py
Konstantin Fickel 4def49350e
All checks were successful
Continuous Integration / Build Package (push) Successful in 35s
Continuous Integration / Lint, Check & Test (push) Successful in 57s
chore: rename bulkgen to hokusai
2026-02-20 17:08:12 +01:00

11 lines
140 B
Python

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