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