25 lines
717 B
Python
25 lines
717 B
Python
# sxxxxxxx_pydownloadfwviasrio/__main__.py
|
|
|
|
# Example import assuming your main logic is in a 'main' function
|
|
# within a 'app' module in your 'sxxxxxxx_pydownloadfwviasrio.core' package.
|
|
# from sxxxxxxx_pydownloadfwviasrio.core.app import main as start_application
|
|
#
|
|
# Or, if you have a function in sxxxxxxx_pydownloadfwviasrio.core.core:
|
|
# from sxxxxxxx_pydownloadfwviasrio.core.core import main_function
|
|
|
|
"""Package entry point for the flasher application.
|
|
|
|
This module launches the GUI which in turn exercises `pydownloadfwviasrio.core`.
|
|
"""
|
|
|
|
from pydownloadfwviasrio.gui.gui import main as gui_main
|
|
|
|
|
|
def main() -> None:
|
|
"""Start the application GUI."""
|
|
gui_main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|