6 lines
109 B
Python
6 lines
109 B
Python
|
|
"""`python -m gui` — launch the Flet GUI."""
|
||
|
|
from gui.app import run
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
run()
|