summaryrefslogtreecommitdiffstats
path: root/packaging/win/node-entry.py
blob: 6fadad7ba0d8b4d51f3d6290a62b5e43a8893858 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
"""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()