9 lines
140 B
Python
9 lines
140 B
Python
from compose_viz import cli, __app_name__
|
|
|
|
|
|
def main() -> None:
|
|
cli.app(prog_name=__app_name__)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|