7 lines
157 B
Python
7 lines
157 B
Python
from pathlib import Path
|
|
|
|
from flandre.launcher import launch_from_file
|
|
|
|
if __name__ == '__main__':
|
|
launch_from_file(Path(__file__).parent / 'gui.toml')
|