mirror of
https://github.com/trycua/computer.git
synced 2026-01-07 05:50:13 -06:00
Reorganize lib folder w/typescript and python roots, initialize core library.
This commit is contained in:
10
libs/python/computer-server/computer_server/__main__.py
Normal file
10
libs/python/computer-server/computer_server/__main__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""
|
||||
Main entry point for running the Computer Server as a module.
|
||||
This allows the server to be started with `python -m computer_server`.
|
||||
"""
|
||||
|
||||
import sys
|
||||
from .cli import main
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
||||
Reference in New Issue
Block a user