9 lines
245 B
Python
9 lines
245 B
Python
# markdownconverter/__main__.py
|
|
# Use absolute import so the module can be executed both as a package
|
|
# and as a standalone script embedded by PyInstaller.
|
|
from markdownconverter.gui.gui import run_app
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_app()
|