10 lines
197 B
Python
Executable file
10 lines
197 B
Python
Executable file
#!/bin/bash/python3
|
|
|
|
"""
|
|
Short executable file to start the command-line-interface for the hanabi package.
|
|
Note this is not part of the package itself
|
|
"""
|
|
|
|
from hanabi import cli
|
|
|
|
cli.hanabi_cli()
|