Files
openworker/packaging/server_entry.py
Rohit C Prasad cffec6bc4b rename artifact names to openworker: desktop/server binaries, console scripts, npm package
The Python import namespace (coworker) and the live auth config strings are
intentionally unchanged.
2026-07-21 11:35:29 -07:00

11 lines
310 B
Python

"""PyInstaller entry point for the bundled desktop sidecar server.
Thin wrapper so PyInstaller has a concrete script to analyze (the console_script
`openworker-server` is generated metadata, not a file). Runs the same `main()`.
"""
from coworker.server.run import main
if __name__ == "__main__":
main()