mirror of
https://github.com/andrewyng/openworker.git
synced 2026-09-01 15:36:08 +00:00
The Python import namespace (coworker) and the live auth config strings are intentionally unchanged.
11 lines
310 B
Python
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()
|