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