"""PyInstaller entry point for the bundled Windows node daemon. `meshbay_node.daemon:main` is a module function; PyInstaller freezes a script. This is that script — nothing more. The frozen binary is `meshbay-node.exe`, relocatable, and is what the desktop client spawns and what the W3 autostart launcher points at (`meshbay_node.platform._node_exe`). """ from meshbay_node.daemon import main if __name__ == "__main__": main()